aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 57aa54b3e227b1d30b2897ecb10c2de5a77f7238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "modelthing"
version = "0.1.0"
authors = ["bnewbold <bnewbold@robocracy.org>"]
build = "src/build.rs" # eg, LALRPOP preprocessing

[build-dependencies]
lalrpop = "0.12"

[dependencies]
getopts = "^0.2"
toml = "0.2"
log = "0.3"
env_logger = "0.3"
lalrpop-util = "^0.12.4"
markdown = "0.1"
colored = "1.3"

# parser util
rustc-serialize = "0.3"
docopt = "0.6"

# webface
pencil = "0.3"


[features]
# this effectively enables the feature `no-color` of colored when testing
test = ["colored/no-color"]