1 | [package] |
2 | name = "serde_derive" |
3 | version = "1.0.197" |
4 | authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>" , "David Tolnay <dtolnay@gmail.com>" ] |
5 | categories = ["no-std" , "no-std::no-alloc" ] |
6 | description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]" |
7 | documentation = "https://serde.rs/derive.html" |
8 | homepage = "https://serde.rs" |
9 | keywords = ["serde" , "serialization" , "no_std" , "derive" ] |
10 | license = "MIT OR Apache-2.0" |
11 | readme = "crates-io.md" |
12 | repository = "https://github.com/serde-rs/serde" |
13 | rust-version = "1.56" |
14 | |
15 | [features] |
16 | default = [] |
17 | deserialize_in_place = [] |
18 | |
19 | [lib] |
20 | name = "serde_derive" |
21 | proc-macro = true |
22 | |
23 | [dependencies] |
24 | proc-macro2 = { workspace = true, features = ["proc-macro" ] } |
25 | quote = { workspace = true, features = ["proc-macro" ] } |
26 | syn = { workspace = true, features = ["clone-impls" , "derive" , "parsing" , "printing" , "proc-macro" ] } |
27 | |
28 | [dev-dependencies] |
29 | serde = { version = "1" , path = "../serde" } |
30 | |
31 | [package.metadata.docs.rs] |
32 | targets = ["x86_64-unknown-linux-gnu" ] |
33 | rustdoc-args = ["--generate-link-to-definition" ] |
34 | |