-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
88 lines (73 loc) · 1.88 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
83
84
85
86
87
88
[package]
name = "dam"
version = "0.1.0"
edition = "2021"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
num = "0.4.0"
ndarray = "0.15.6"
dam-macros = { version = "0.1.0", path = "dam-macros" }
linkme = "0.3.12"
serde = "1.0.171"
serde_json = "1.0.103"
enum_dispatch = "0.3.12"
petgraph = "0.6.3"
rustc-hash = "1.1.0"
# For running different thread priorities and enabling FIFO Execution
thread-priority = "0.15"
thiserror = "1.0.49"
graphviz-rust = { version = "0.6.6", optional = true }
derive_builder = "0.12.0"
cfg-if = "1.0.0"
enum_delegate = "0.2.0"
derive_more = "0.99.17"
bson = "2.7.0"
crossbeam = { version = "0.8.4" }
may = { git = "https://github.com/Xudong-Huang/may.git", optional = true, features = [
"rand_work_steal",
] }
parking_lot = "0.12.1"
fastrand = "2.0.1"
futures = "0.3.30"
anyhow = "1.0.86"
[features]
default = ["coroutines"]
dot = ["dep:graphviz-rust"]
log-mongo = ["dep:mongodb", "logging"]
test-log-mongo = ["log-mongo"]
logging = []
doc-cfg = []
## Backs channels with unbounded channels instead of bounded channels
unbounded-channels = []
## Executes in a cycle-by-cycle manner, terrible for performance.
## The only point of this flag is to pretend like we're executing cycle-by-cycle.
cycle-like = []
## use os-threads as the form of parallelism
os-threads = []
## use may coroutines as the primary form of parallelism
coroutines = ["dep:may"]
[dependencies.mongodb]
version = "2.7.0"
default-features = false
optional = true
## Have to use openssl-tls for cross compilation and wsl2.
features = ["sync", "openssl-tls"]
[dev-dependencies]
criterion = "0.5.1"
[profile.release-with-debug]
inherits = "release"
debug = 1
lto = "thin"
codegen-units = 1
[profile.dev.build-override]
codegen-units = 1
opt-level = 3
debug = 1
[[bench]]
name = "benchmark_templates"
harness = false
[[bench]]
name = "benchmark_sst"
harness = false