aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9cd4ec8..61add16 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,6 +7,10 @@ license = "MIT"
repository = "https://github.com/ebarnard/rust-plist/"
documentation = "https://ebarnard.github.io/rust-plist/"
keywords = ["plist", "parser"]
+build = "build.rs"
+
+[features]
+serde_tests = ["serde_codegen", "syntex"]
[dependencies]
rustc-serialize = "0.3.16"
@@ -14,3 +18,7 @@ xml-rs = "0.2.2"
byteorder = "0.4.2"
chrono = "0.2.17"
serde = "0.6.6"
+
+[build-dependencies]
+serde_codegen = { version = "0.6.6", optional = true }
+syntex = { version = "0.22.0", optional = true }