Cargo.toml (491B)
1 [package] 2 name = "style_derive" 3 version = "0.0.1" 4 authors = ["The Servo Project Developers"] 5 license = "MPL-2.0" 6 repository = "https://github.com/servo/stylo" 7 edition = "2021" 8 description = "Derive crate for Stylo CSS engine" 9 10 [lib] 11 path = "lib.rs" 12 proc-macro = true 13 14 [dependencies] 15 darling = { version = "0.20", default-features = false } 16 proc-macro2 = "1" 17 quote = "1" 18 syn = { version = "2", default-features = false, features = ["clone-impls", "derive", "parsing"] } 19 synstructure = "0.13"