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>"]
|
2023-07-03 16:05:32 -05:00
|
|
|
categories = ["no-std", "no-std::no-alloc"]
|
2016-08-29 00:19:17 -05:00
|
|
|
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
|
2018-10-04 01:14:49 -05:00
|
|
|
documentation = "https://serde.rs/derive.html"
|
2024-03-11 22:17:37 -05:00
|
|
|
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"
|
2018-05-27 21:18:30 -05:00
|
|
|
readme = "crates-io.md"
|
2022-07-31 21:19:07 -05:00
|
|
|
repository = "https://github.com/serde-rs/serde"
|
2023-03-17 19:34:46 -05:00
|
|
|
rust-version = "1.56"
|
2016-08-29 00:19:17 -05:00
|
|
|
|
2017-11-13 14:35:14 -06:00
|
|
|
[features]
|
|
|
|
default = []
|
2017-12-17 12:46:44 -06:00
|
|
|
deserialize_in_place = []
|
2017-11-13 14:35:14 -06:00
|
|
|
|
2016-08-29 00:19:17 -05:00
|
|
|
[lib]
|
|
|
|
name = "serde_derive"
|
2016-10-08 17:29:36 -05:00
|
|
|
proc-macro = true
|
2016-08-29 00:19:17 -05:00
|
|
|
|
2017-01-25 22:02:24 -06:00
|
|
|
[dependencies]
|
2024-01-26 15:33:14 -06:00
|
|
|
proc-macro2 = { workspace = true, features = ["proc-macro"] }
|
|
|
|
quote = { workspace = true, features = ["proc-macro"] }
|
|
|
|
syn = { workspace = true, features = ["clone-impls", "derive", "parsing", "printing", "proc-macro"] }
|
2017-10-22 14:09:56 -05:00
|
|
|
|
|
|
|
[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"]
|
2023-07-21 00:19:03 -05:00
|
|
|
rustdoc-args = ["--generate-link-to-definition"]
|