-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (25 loc) · 974 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "yew-autoprops"
version = "0.4.1"
edition = "2021"
authors = ["Valentin Golev <[email protected]"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yewstack/yew-autoprops"
homepage = "https://github.com/yewstack/yew-autoprops"
documentation = "https://docs.rs/yew-autoprops/"
keywords = ["web", "wasm", "frontend", "webasm", "webassembly"]
categories = ["gui", "web-programming", "wasm"]
description = "proc-macro to automatically derive Properties structs from args for Yew components"
exclude = [".github/workflows/*"]
rust-version = "1.64.0"
[lib]
proc-macro = true
[dependencies]
syn = { version = "2", features = ["full"] }
proc-macro2 = "1"
quote = "1"
[dev-dependencies]
yew = { version = "0.21" }
implicit-clone = "0.4.6"
trybuild = "1"
rustversion = "1"