-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
72 lines (63 loc) · 1.25 KB
/
Cargo.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
edition = "2021"
name = "ucg"
version = "0.7.3"
authors = ["Jeremy Wall <[email protected]>"]
description = "A configuration generation grammar."
repository = "https://github.com/zaphar/ucg"
documentation = "https://ucg.marzhillstudios.com"
readme = "README.md"
keywords = ["compiler", "config"]
license = "Apache-2.0"
build = "bin/build_main.rs"
include = [
"std/**/*",
"src/**/*",
"bin/build_main.rs",
"Cargo.toml",
"Cargo.lock"
]
[dependencies]
serde = "<=1.0.171"
abortable_parser = "=0.2.3"
clap = "~2.33.0"
serde_json = "~1.0.9"
simple-error = "0.2.0"
serde_yaml = "0.9.16"
toml = "~0.5.8"
xml-rs = "0.8.0"
base64 = "0.21.0"
regex = "1"
dirs = "4.0.0"
unicode-segmentation = "1.2.1"
rustyline = "10.1.0"
atty = "0.2"
[build-dependencies]
walkdir = "2.2.7"
dirs = "4.0.0"
[dev-dependencies]
bencher = "~0.1.5"
[[bench]]
name = "parse"
harness = false
path = "src/benches/parse.rs"
[profile.bench]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = false
codegen-units = 16
incremental = false
overflow-checks = false
[profile.release]
debug = true
[lib]
name = "ucglib"
path = "src/lib.rs"
bench = false
[[bin]]
name = "ucg"
path = "src/main.rs"
[features]
tracing = []