serde/serde_derive/Cargo.toml

35 lines
1.0 KiB
TOML
Raw Normal View History

2016-08-29 00:19:17 -05:00
[package]
name = "serde_derive"
2024-02-19 18:22:07 -06:00
version = "1.0.197"
2017-04-20 10:13:46 -05:00
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
categories = ["no-std", "no-std::no-alloc"]
2016-08-29 00:19:17 -05:00
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
documentation = "https://serde.rs/derive.html"
edition = "2015"
2022-07-31 21:19:07 -05:00
homepage = "https://serde.rs"
2022-08-02 12:38:57 -05:00
keywords = ["serde", "serialization", "no_std", "derive"]
2022-07-31 21:19:07 -05:00
license = "MIT OR Apache-2.0"
readme = "crates-io.md"
2022-07-31 21:19:07 -05:00
repository = "https://github.com/serde-rs/serde"
rust-version = "1.56"
2016-08-29 00:19:17 -05:00
[features]
default = []
deserialize_in_place = []
2016-08-29 00:19:17 -05:00
[lib]
name = "serde_derive"
proc-macro = true
2016-08-29 00:19:17 -05:00
[dependencies]
proc-macro2 = { workspace = true, features = ["proc-macro"] }
quote = { workspace = true, features = ["proc-macro"] }
syn = { workspace = true, features = ["clone-impls", "derive", "parsing", "printing", "proc-macro"] }
[dev-dependencies]
2023-07-19 16:11:48 -05:00
serde = { version = "1", path = "../serde" }
2020-03-17 15:31:35 -05:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]