-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (47 loc) · 1.11 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
[package]
name = "truth"
version = "0.5.2"
authors = ["Michael Lamparski <[email protected]>"]
edition = "2021"
build = "build/main.rs"
default-run = "truth-core"
license = "Apache-2.0"
[build-dependencies]
lalrpop = { version = "0.19.5", features = ['lexer'] }
[dependencies]
lazy_static = "1.4.0"
lalrpop-util = { version = "0.19.0", features = ['lexer'] }
regex = "1"
getopts = "0.2.21"
indexmap = "1.6.1"
byteorder = "1.3"
thiserror = "1.0"
codespan-reporting = "0.11"
codespan = "0.11"
enum-map = "0.6.4"
git-version = "0.3.4"
logos = "0.12"
encoding_rs = "0.8"
atty = "0.2"
walkdir = "2"
arrayvec = "0.7"
strum = { version = "0.22", features = ['derive'] }
strsim = "0.10"
serde = { version = "1.0", features = ['derive'] }
serde_json = "1.0"
[dependencies.image]
version = "0.23.14"
default-features = false
features = ['png', 'gif', 'bmp']
[dev-dependencies]
insta = "1.3"
tempfile = "3.0"
assert_cmd = "1.0"
predicates = "1.0"
rand = "0.7.3"
bstr = "0.2"
[profile.release]
debug = true
# This is used at build time, so optimizing it immensely speeds up debug builds.
[profile.dev.package.lalrpop]
opt-level = 3