-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 1.12 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
[package]
name = "oox"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "main"
path = "src/main.rs"
[lib]
name = "lib"
path = "src/lib.rs"
[dependencies]
# nom = "7" old parser
pom = "3.2.0"
pest = "2.0"
pest_derive = "2.0"
ordered-float = "3.4.0"
itertools = "0.10.5"
z3 = {version="0.11.2", features = ["static-link-z3"]}
slog = "2.7.0" # Logging library
# slog = {version="2.7.0", features = ["release_max_level_trace"] } # Logging library with debug logs during --release (will have alot of logs!)
# slog-bunyan = "2.4.0"
sloggers = "2.1.1" # Logging extension for displaying logs in terminal
num = "0.4.0" # Needed for one function (is that worth it?)
derivative = "2.2.0"
queues = "1.1.0"
clap = { version = "4.1.7", features = ["derive"] } # CLI library
criterion = "0.4.0" # benchmark library
rand = "0.8.5" # random
pretty = "0.11.3" # pretty printing library
im-rc = "15.1.0" # immutable maps, arrays to optimize memory usage
csv = "1.2.2"
[[bench]]
name = "experiment1"
harness = false
[[bench]]
name = "experiment2_3"
harness = false