2017-05-05 22:33:25 -05:00
|
|
|
[package]
|
2018-12-06 12:23:52 -06:00
|
|
|
edition = "2018"
|
2017-08-12 14:48:28 -05:00
|
|
|
name = "ucg"
|
2019-04-26 19:28:36 -05:00
|
|
|
version = "0.6.0"
|
2017-08-12 14:48:28 -05:00
|
|
|
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
|
2018-02-12 22:56:36 -06:00
|
|
|
description = "A configuration generation grammar."
|
2017-08-12 14:48:28 -05:00
|
|
|
repository = "https://github.com/zaphar/ucg"
|
2019-02-06 20:45:08 -06:00
|
|
|
documentation = "https://ucg.marzhillstudios.com"
|
2017-08-12 14:48:28 -05:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["compiler", "config"]
|
|
|
|
license = "Apache-2.0"
|
2019-01-13 16:56:09 -06:00
|
|
|
build = "bin/build_main.rs"
|
2019-01-14 18:44:01 -06:00
|
|
|
include = [
|
|
|
|
"std/**/*",
|
|
|
|
"src/**/*",
|
|
|
|
"bin/build_main.rs",
|
|
|
|
"Cargo.toml",
|
|
|
|
"Cargo.lock"
|
|
|
|
]
|
2017-05-05 22:33:25 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2019-02-01 19:17:31 -06:00
|
|
|
abortable_parser = "~0.2.3"
|
2018-08-14 16:10:25 -05:00
|
|
|
clap = "~2.26.0"
|
|
|
|
serde_json = "~1.0.9"
|
|
|
|
simple-error = "0.1"
|
2018-08-25 18:38:44 -05:00
|
|
|
serde_yaml = "~0.8.1"
|
2018-11-16 13:23:29 -06:00
|
|
|
toml = "~0.4.8"
|
2018-12-10 21:25:10 -06:00
|
|
|
xml-rs = "0.8.0"
|
2019-01-05 14:27:49 -06:00
|
|
|
base64 = "0.10.0"
|
2019-01-07 19:27:29 -06:00
|
|
|
regex = "1"
|
2019-01-13 15:00:26 -06:00
|
|
|
dirs = "1.0.4"
|
2019-01-18 19:58:57 -06:00
|
|
|
unicode-segmentation = "1.2.1"
|
2019-05-26 09:32:56 -05:00
|
|
|
rustyline = "4.1.0"
|
2018-07-02 18:30:17 -05:00
|
|
|
|
2019-01-13 16:56:09 -06:00
|
|
|
[build-dependencies]
|
|
|
|
walkdir = "2.2.7"
|
|
|
|
dirs = "1.0.4"
|
|
|
|
|
2018-07-02 18:30:17 -05:00
|
|
|
[dev-dependencies]
|
|
|
|
bencher = "~0.1.5"
|
|
|
|
|
|
|
|
[[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
|
2017-05-05 22:33:25 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "ucglib"
|
|
|
|
path = "src/lib.rs"
|
2018-07-02 18:30:17 -05:00
|
|
|
bench = false
|
2017-05-05 22:33:25 -05:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "ucg"
|
2017-07-11 20:29:54 -05:00
|
|
|
path = "src/main.rs"
|
2018-07-02 18:30:17 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
tracing = []
|