Cargo.toml
1 [package] 2 edition = "2021" 3 version = "0.1.0" 4 name = "dioxus-attributes" 5 license = "MIT OR Apache-2.0" 6 description = "Proc macro for creating dynamic attribute lists for Dioxus elements" 7 8 [lib] 9 proc-macro = true 10 11 [dependencies] 12 quote = "1.0" 13 dioxus-rsx = "0.7.1" 14 proc-macro2 = "1.0" 15 syn = { version = "2.0", features = ["full", "extra-traits"] }