serde/serde_macros/Cargo.toml

54 lines
1.2 KiB
TOML
Raw Normal View History

2014-07-18 06:17:47 -07:00
[package]
name = "serde_macros"
2016-07-27 22:07:57 -07:00
version = "0.8.0"
2014-07-18 06:17:47 -07:00
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
2015-03-08 23:02:44 -07:00
license = "MIT/Apache-2.0"
2015-03-08 23:12:33 -07:00
description = "Macros to auto-generate implementations for the serde framework"
2015-07-30 06:43:20 -07:00
repository = "https://github.com/serde-rs/serde"
2016-04-13 08:11:02 -07:00
documentation = "https://github.com/serde-rs/serde"
keywords = ["serde", "serialization"]
include = ["Cargo.toml", "src/**/*.rs"]
build = "build.rs"
2014-07-18 06:17:47 -07:00
[lib]
2014-07-18 06:17:47 -07:00
name = "serde_macros"
plugin = true
[features]
unstable-testing = [
"clippy",
"skeptic",
2016-08-03 16:00:20 +02:00
"serde_json",
"serde/unstable-testing",
"serde_codegen/unstable-testing"
]
[build-dependencies]
skeptic = { version = "^0.6.0", optional = true }
[dependencies]
2016-02-18 09:27:41 -08:00
clippy = { version = "^0.*", optional = true }
serde_codegen = { version = "=0.8.0", default-features = false, features = ["unstable"] }
skeptic = { version = "^0.6.0", optional = true }
2016-08-03 16:00:20 +02:00
serde_json = { version = "0.8.0", optional = true }
2015-05-17 23:26:04 -07:00
[dev-dependencies]
2016-07-17 13:32:21 -07:00
clippy = "^0.*"
2016-06-22 20:19:47 -07:00
compiletest_rs = "^0.2.0"
2016-06-11 11:15:10 -07:00
fnv = "1.0"
rustc-serialize = "^0.3.16"
serde = "0.8.0"
serde_test = "0.8.0"
[[test]]
name = "test"
path = "tests/test.rs"
2016-08-03 16:00:20 +02:00
[[test]]
name = "skeptic"
path = "tests/skeptic.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"