-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (50 loc) · 897 Bytes
/
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
[package]
authors = ["certainty <david.krentzlin@gmail.com>"]
edition = "2018"
name = "braces"
version = "0.1.0"
[lib]
name = "braces"
path = "src/lib.rs"
[[bench]]
harness = false
name = "compiler_benchmark"
[[bench]]
harness = false
name = "vm_benchmark"
[[bench]]
harness = false
name = "scheme_values_benchmark"
[features]
debug_code = []
debug_vm = []
[dependencies]
# utils
anyhow = "1.0"
env_logger = "0.8"
lazy_static = "1.4"
log = "0.4"
pretty_env_logger = "0.4"
thiserror = "1.0"
# values
az = "1.1.1"
im-rc = "15.0"
rug = "1.12"
# compiler / interpreter
arrayvec = "0.7.0"
clap = "3.0.10"
codespan-reporting = "0.11"
hashbrown = "0.11"
rustc-hash = "1.1.0"
rustyline = "8.0.0"
#parser
nom = "6.1"
nom_locate = "3.0"
directories = "3.0"
rand = "0.8.4"
[dev-dependencies]
cargo-criterion = "1.1.0"
criterion = "0.3.4"
matches = "0.1"
quickcheck = "1"
quickcheck_macros = "1.0"