serde/precompiled/serde_derive/Cargo.toml

37 lines
1002 B
TOML
Raw Normal View History

[package]
name = "serde_derive"
2023-07-28 18:07:40 -05:00
version = "1.0.178"
authors = ["David Tolnay <dtolnay@gmail.com>"]
2023-07-19 15:14:18 -05:00
categories = ["no-std", "no-std::no-alloc"]
description = "Implementation of #[derive(Serialize, Deserialize)]"
2023-07-19 15:14:18 -05:00
documentation = "https://serde.rs/derive.html"
edition = "2015"
homepage = "https://serde.rs"
include = ["serde_derive-x86_64-unknown-linux-gnu", "src", "LICENSE-APACHE", "LICENSE-MIT"]
2023-07-19 15:14:18 -05:00
keywords = ["serde", "serialization", "no_std", "derive"]
license = "MIT OR Apache-2.0"
readme = "crates-io.md"
2023-07-19 15:14:18 -05:00
repository = "https://github.com/serde-rs/serde"
rust-version = "1.56"
2023-07-19 15:14:18 -05:00
[features]
default = []
deserialize_in_place = []
[lib]
proc-macro = true
[target.'cfg(not(all(target_arch = "x86_64", target_os = "linux", target_env = "gnu")))'.dependencies]
proc-macro2 = "1"
quote = "1"
syn = "2.0.25"
[dev-dependencies]
2023-07-19 16:11:48 -05:00
serde = { version = "1", path = "../../serde" }
2023-07-19 15:14:18 -05:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
2023-07-19 15:14:18 -05:00
[workspace]