serde/serde_codegen/Cargo.toml

30 lines
924 B
TOML
Raw Normal View History

2015-05-17 23:11:08 -07:00
[package]
name = "serde_codegen"
2016-09-27 22:22:28 -07:00
version = "0.8.10"
2015-05-17 23:11:08 -07:00
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Macros to auto-generate implementations for the serde framework"
2016-08-18 17:08:05 -04:00
homepage = "https://serde.rs"
2015-07-30 06:43:20 -07:00
repository = "https://github.com/serde-rs/serde"
2016-08-18 17:08:05 -04:00
documentation = "https://serde.rs/codegen.html"
keywords = ["serde", "serialization"]
2016-09-10 21:53:14 -07:00
include = ["Cargo.toml", "src/**/*.rs"]
2015-05-17 23:26:04 -07:00
[features]
default = ["with-syntex"]
2016-09-10 21:53:14 -07:00
unstable = []
unstable-testing = ["clippy"]
with-syntex = [
"syntex",
"syntex_syntax",
]
2016-09-10 21:53:14 -07:00
with-syn = []
2015-05-17 23:11:08 -07:00
[dependencies]
2016-02-18 09:27:41 -08:00
clippy = { version = "^0.*", optional = true }
2016-09-27 01:04:11 -07:00
quote = "0.2"
2016-09-27 22:22:28 -07:00
serde_codegen_internals = { version = "=0.9.0", default-features = false, path = "../serde_codegen_internals" }
2016-09-27 01:04:11 -07:00
syn = { version = "0.8", features = ["aster", "visit"] }
2016-09-21 15:06:21 +02:00
syntex = { version = "^0.44.0", optional = true }
syntex_syntax = { version = "^0.44.0", optional = true }