mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-22 18:19:54 -04:00
We use a dotted syntax for now but we might want to support other separators in a future commit.
27 lines
558 B
TOML
27 lines
558 B
TOML
[package]
|
|
name = "ucg"
|
|
version = "0.0.2"
|
|
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"
|