ucg/Cargo.toml
Jeremy Wall 45b9712380 Some Refactoring and cleanups.
* Moved the AST datastructures into their own module.
* Collapsed the Expression Enum to just wrappers around structs
  instead of having actual structs in the definitions.
* Added a few more unit tests to ensure nothing got broken.
* Added documentation for the new structs.
* Added a unifying BinaryExpression Tuple type.
2017-09-06 18:16:28 -05:00

23 lines
476 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 = "^2.2"
quick-error = "^1.2.0"
clap = "~2.26.0"
[lib]
name = "ucglib"
path = "src/lib.rs"
[[bin]]
name = "ucg"
path = "src/main.rs"