serde/serde_derive/Cargo.toml

26 lines
853 B
TOML
Raw Normal View History

2016-08-28 22:19:17 -07:00
[package]
name = "serde_derive"
2017-04-05 15:03:37 -07:00
version = "0.9.13"
2016-08-28 22:19:17 -07:00
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
homepage = "https://serde.rs"
repository = "https://github.com/serde-rs/serde"
documentation = "https://serde.rs/codegen.html"
keywords = ["serde", "serialization", "no_std"]
readme = "../README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
2017-04-05 15:11:47 -07:00
publish = false # this branch contains breaking changes
2016-08-28 22:19:17 -07:00
2017-01-24 10:30:10 +01:00
[badges]
travis-ci = { repository = "serde-rs/serde" }
2016-08-28 22:19:17 -07:00
[lib]
name = "serde_derive"
proc-macro = true
2016-08-28 22:19:17 -07:00
[dependencies]
quote = "0.3.8"
2017-03-27 15:45:14 -07:00
serde_codegen_internals = { version = "=0.14.2", default-features = false, path = "../serde_codegen_internals" }
2017-02-20 13:18:38 -08:00
syn = { version = "0.11", features = ["visit"] }