• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2015"
14rust-version = "1.61"
15name = "serde_derive"
16version = "1.0.219"
17authors = [
18    "Erick Tryzelaar <erick.tryzelaar@gmail.com>",
19    "David Tolnay <dtolnay@gmail.com>",
20]
21build = false
22exclude = ["build.rs"]
23autolib = false
24autobins = false
25autoexamples = false
26autotests = false
27autobenches = false
28description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
29homepage = "https://serde.rs"
30documentation = "https://serde.rs/derive.html"
31readme = "crates-io.md"
32keywords = [
33    "serde",
34    "serialization",
35    "no_std",
36    "derive",
37]
38categories = [
39    "no-std",
40    "no-std::no-alloc",
41]
42license = "MIT OR Apache-2.0"
43repository = "https://github.com/serde-rs/serde"
44
45[package.metadata.docs.rs]
46rustdoc-args = [
47    "--generate-link-to-definition",
48    "--extern-html-root-url=core=https://doc.rust-lang.org",
49    "--extern-html-root-url=alloc=https://doc.rust-lang.org",
50    "--extern-html-root-url=std=https://doc.rust-lang.org",
51    "--extern-html-root-url=proc_macro=https://doc.rust-lang.org",
52]
53targets = ["x86_64-unknown-linux-gnu"]
54
55[features]
56default = []
57deserialize_in_place = []
58
59[lib]
60name = "serde_derive"
61path = "src/lib.rs"
62proc-macro = true
63
64[dependencies.proc-macro2]
65version = "1.0.74"
66features = ["proc-macro"]
67default-features = false
68
69[dependencies.quote]
70version = "1.0.35"
71features = ["proc-macro"]
72default-features = false
73
74[dependencies.syn]
75version = "2.0.81"
76features = [
77    "clone-impls",
78    "derive",
79    "parsing",
80    "printing",
81    "proc-macro",
82]
83default-features = false
84
85[dev-dependencies.serde]
86version = "1"
87