serde/serde_internals/Cargo.toml

20 lines
604 B
TOML
Raw Normal View History

[package]
2016-06-21 21:12:08 -05:00
name = "serde_internals"
version = "0.1.0"
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
license = "MIT/Apache-2.0"
description = "AST representation used by Serde codegen. Unstable."
repository = "https://github.com/serde-rs/serde"
documentation = "https://github.com/serde-rs/serde"
keywords = ["serde", "serialization"]
include = ["Cargo.toml", "src/**/*.rs"]
[features]
default = ["with-syntex"]
nightly-testing = ["clippy"]
with-syntex = ["syntex_syntax"]
[dependencies]
clippy = { version = "^0.*", optional = true }
2016-06-22 22:19:47 -05:00
syntex_syntax = { version = "^0.36.0", optional = true }