23 lines
793 B
TOML
Raw Normal View History

[package]
2017-04-14 15:42:27 -07:00
name = "serde_derive_internals"
2019-09-07 20:14:30 -07:00
version = "0.25.0" # remember to update html_root_url
2017-04-20 08:13:46 -07:00
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
2019-05-09 15:21:20 -07:00
license = "MIT OR Apache-2.0"
2017-04-14 15:42:27 -07:00
description = "AST representation used by Serde derive macros. Unstable."
2016-08-18 17:08:05 -04:00
homepage = "https://serde.rs"
repository = "https://github.com/serde-rs/serde"
documentation = "https://docs.rs/serde_derive_internals"
keywords = ["serde", "serialization"]
include = ["lib.rs", "src/**/*.rs", "LICENSE-APACHE", "LICENSE-MIT"]
[lib]
path = "lib.rs"
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
2020-06-21 17:22:07 -07:00
syn = { version = "1.0.33", default-features = false, features = ["derive", "parsing", "printing", "clone-impls"] }
2017-01-24 10:30:10 +01:00
2020-03-17 13:31:35 -07:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]