-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
27 lines (22 loc) · 1003 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
[package]
name = "hash_engine_lib"
version = "0.0.0"
edition = "2021"
[workspace]
members = ["bin/*", "lib/*"]
default-members = ["bin/cli"]
[dev-dependencies]
execution = { path = "lib/execution", default-features = false }
experiment-structure = { path = "lib/experiment-structure", default-features = false }
experiment-control = { path = "lib/experiment-control", default-features = false }
orchestrator = { path = "lib/orchestrator", default-features = false }
# TODO: Change to `version = "0.2"` as soon as it's released
error-stack = { git = "https://github.com/hashintel/hash", rev = "5edddb5", features = ["spantrace"] }
num_cpus = "1.13.1"
serde = { version = "1.0.138", features = ["derive"] }
serde_json = "1.0.82"
tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread", "sync", "process", "time"] }
tracing = "0.1.35"
tracing-subscriber = { version = "0.3.14", features = ["env-filter", "json"] }
[features]
texray = ["orchestrator/texray", "experiment-control/texray"]