зеркало из https://github.com/mozilla/gecko-dev.git
33 строки
983 B
TOML
33 строки
983 B
TOML
[package]
|
|
name = "serde_codegen"
|
|
version = "0.9.0"
|
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
description = "Macros to auto-generate implementations for the serde framework"
|
|
homepage = "https://serde.rs"
|
|
repository = "https://github.com/serde-rs/serde"
|
|
documentation = "https://serde.rs/codegen.html"
|
|
keywords = ["serde", "serialization"]
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
[features]
|
|
default = ["with-syntex"]
|
|
unstable = []
|
|
unstable-testing = ["clippy"]
|
|
with-syntex = [
|
|
"syntex",
|
|
"syntex_syntax",
|
|
]
|
|
with-syn = []
|
|
|
|
[dependencies]
|
|
clippy = { version = "^0.*", optional = true }
|
|
quote = "0.3.8"
|
|
serde_codegen_internals = { version = "=0.11.3", default-features = false, path = "../serde_codegen_internals" }
|
|
syn = { version = "0.10", features = ["aster", "visit"] }
|
|
syntex = { version = "^0.54.0", optional = true }
|
|
syntex_syntax = { version = "^0.54.0", optional = true }
|
|
|
|
[badges]
|
|
travis-ci = { repository = "serde-rs/serde" }
|