-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
82 lines (65 loc) · 1.34 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
73
74
75
76
77
78
79
80
81
82
[package]
name = "small-lang"
version = "0.1.0"
authors = ["Andrew Hickman <andrew.hickman1@sky.com>"]
license = "MIT"
edition = "2018"
build = "build.rs"
[lib]
bench = false
[[bin]]
name = "small-lang"
required-features = ["structopt", "paw"]
[[bench]]
name = "fibonacci-parse"
harness = false
[[bench]]
name = "fibonacci-check"
harness = false
[[bench]]
name = "fibonacci-run"
harness = false
[profile.release]
debug = true
[features]
default = ["structopt", "paw"]
[dependencies]
seahash = "~4"
lalrpop-util = "0.19"
regex = "~1"
iter-set = "~2"
small-ord-set = "0.1.0"
codespan = { version = "0.9.5", features = ["serialization"] }
log = "0.4.8"
serde_json = "1.0.41"
codespan-reporting = "0.9.5"
itertools = "0.9.0"
once_cell = "1.2.0"
[dependencies.paw]
version = "1.0.0"
optional = true
[dependencies.structopt]
version = "0.3.3"
features = ["paw"]
optional = true
[dependencies.env_logger]
version = "0.7.1"
optional = true
[dependencies.mlsub]
git = "https://github.com/andrewhickman/mlsub-rs"
tag = "v0.1.8"
[dependencies.im]
package = "im-rc"
version = "~15"
features = ["serde"]
[dependencies.serde]
version = "1.0.101"
features = ["derive", "rc"]
[dependencies.smallvec]
version = "~1"
features = ["serde"]
[build-dependencies]
lalrpop = { version = "0.19", features = ["lexer"] }
[dev-dependencies]
proptest = "0.10.1"
criterion = "0.3.0"