ucg/Cargo.toml

53 lines
944 B
TOML
Raw Normal View History

[package]
name = "ucg"
2018-08-22 19:01:23 -05:00
version = "0.1.8"
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
2018-02-12 22:56:36 -06:00
description = "A configuration generation grammar."
repository = "https://github.com/zaphar/ucg"
2018-02-12 22:56:36 -06:00
documentation = "https://docs.rs/crate/ucg"
readme = "README.md"
keywords = ["compiler", "config"]
license = "Apache-2.0"
[dependencies.nom]
version = "^3.2"
[dependencies]
nom_locate = "^0.1.1"
clap = "~2.26.0"
serde_json = "~1.0.9"
simple-error = "0.1"
[dev-dependencies]
bencher = "~0.1.5"
cpuprofiler = "0.0.3"
[[bench]]
name = "parse"
harness = false
path = "src/benches/parse.rs"
[profile.bench]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = false
codegen-units = 16
incremental = false
overflow-checks = false
[profile.release]
debug = true
[lib]
name = "ucglib"
path = "src/lib.rs"
bench = false
[[bin]]
name = "ucg"
2017-07-11 20:29:54 -05:00
path = "src/main.rs"
[features]
tracing = []