serde/serde_derive_internals/Cargo.toml

25 lines
785 B
TOML
Raw Normal View History

[package]
2017-04-14 17:42:27 -05:00
name = "serde_derive_internals"
version = "0.29.0"
2017-04-20 10:13:46 -05:00
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
2017-04-14 17:42:27 -05:00
description = "AST representation used by Serde derive macros. Unstable."
documentation = "https://docs.rs/serde_derive_internals"
exclude = ["build.rs"]
2022-07-31 21:19:07 -05:00
homepage = "https://serde.rs"
keywords = ["serde", "serialization"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/serde-rs/serde"
rust-version = "1.56"
[lib]
path = "lib.rs"
[dependencies]
2024-01-23 06:53:29 -06:00
proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true, features = ["clone-impls", "derive", "parsing", "printing"] }
2017-01-24 03:30:10 -06:00
2020-03-17 15:31:35 -05:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]