2016-06-19 22:15:49 -05:00
|
|
|
[package]
|
2017-04-14 17:42:27 -05:00
|
|
|
name = "serde_derive_internals"
|
2021-04-09 16:23:13 -05:00
|
|
|
version = "0.26.0" # remember to update html_root_url
|
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."
|
2018-11-21 16:22:33 -06:00
|
|
|
documentation = "https://docs.rs/serde_derive_internals"
|
2022-07-31 21:19:07 -05:00
|
|
|
homepage = "https://serde.rs"
|
2020-06-10 03:21:15 -05:00
|
|
|
include = ["lib.rs", "src/**/*.rs", "LICENSE-APACHE", "LICENSE-MIT"]
|
2022-07-31 21:19:07 -05:00
|
|
|
keywords = ["serde", "serialization"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/serde-rs/serde"
|
|
|
|
rust-version = "1.31"
|
2018-05-06 01:06:16 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
2016-06-19 22:15:49 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2019-08-26 14:29:45 -05:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
2022-11-27 19:45:26 -06:00
|
|
|
syn = { version = "1.0.104", default-features = false, features = ["derive", "parsing", "printing", "clone-impls"] }
|
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"]
|