forked from OBDDimal/OBDDimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 896 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
[package]
name = "obddimal"
version = "0.1.0"
edition = "2021"
default-run = "obddimal"
[profile.bench]
debug = true
[profile.release]
debug = true
[lib]
name = "obddimal"
path = "src/lib.rs"
bench = false
[[bin]]
name = "obddimal"
path = "src/main.rs"
bench = false
[[bin]]
name = "testcase_generation"
path = "src/testcase_generation.rs"
bench = false
[[bench]]
name = "obddimal_benches"
harness = false
[dependencies]
# https://crates.io/crates/num-bigint
num-bigint = { version = "0.4" }
# https://crates.io/crates/num-traits
num-traits = { version = "0.2" }
regex = { version = "1.5" }
rustc-hash = { version = "1.0" }
rand = "0.8"
log = "0.4"
env_logger = "0.9"
concat-idents = "1.1.3"
bitvec = "1.0.1"
indicatif = "0.17.0"
console = "0.15.1"
crossterm = "0.25.0"
enum_dispatch = "0.3.8"
fnv = "1.0.3"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }