ucg/Cargo.toml
Jeremy Wall 3873b1c98a RELEASE: v0.1.0 release prep
- Documentation fixes for operator precendence changes.
- Mark this as a v0.1.0 change for with potential breaking api changes.
- Cleanup TODO documentation.
2018-05-14 21:49:10 -05:00

27 lines
558 B
TOML

[package]
name = "ucg"
version = "0.1.0"
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
description = "A configuration generation grammar."
repository = "https://github.com/zaphar/ucg"
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"
[lib]
name = "ucglib"
path = "src/lib.rs"
[[bin]]
name = "ucg"
path = "src/main.rs"