2016-06-19 20:15:49 -07:00
|
|
|
[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"
|
2016-06-19 20:15:49 -07:00
|
|
|
repository = "https://github.com/serde-rs/serde"
|
2018-11-21 14:22:33 -08:00
|
|
|
documentation = "https://docs.rs/serde_derive_internals"
|
2016-06-19 20:15:49 -07:00
|
|
|
keywords = ["serde", "serialization"]
|
2020-06-10 01:21:15 -07:00
|
|
|
include = ["lib.rs", "src/**/*.rs", "LICENSE-APACHE", "LICENSE-MIT"]
|
2018-05-05 23:06:16 -07:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
2016-06-19 20:15:49 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2019-08-26 12:29:45 -07:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
|
|
|
syn = { version = "1.0", 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"]
|