ucg/Cargo.toml
Jeremy Wall 5fba06d71f Add json as an output type.
* Uses serde_json
* Doesn't handle macro values very well.
* Handles maps and lists just fine.
* doesn't pretty print the values though.
2018-02-04 16:08:30 -06:00

26 lines
521 B
TOML

[package]
name = "ucg"
version = "0.0.1"
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
description = "Runs a command on user specified triggers."
repository = "https://github.com/zaphar/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"