2023-03-14 07:15:45 -07:00
|
|
|
[package]
|
|
|
|
name = "simulations"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-06-14 22:52:37 +08:00
|
|
|
[[bin]]
|
|
|
|
name = "simulation"
|
2023-06-16 19:26:48 +08:00
|
|
|
path = "src/bin/app/main.rs"
|
2023-06-14 22:52:37 +08:00
|
|
|
|
2023-03-24 21:21:10 +01:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2023-03-14 07:15:45 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-04-04 20:26:57 +08:00
|
|
|
anyhow = "1"
|
2023-04-25 19:14:30 +08:00
|
|
|
arc-swap = "1.6"
|
2023-06-14 22:52:37 +08:00
|
|
|
bls-signatures = "0.14"
|
2023-03-24 21:21:10 +01:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2023-06-15 17:40:29 +08:00
|
|
|
ctrlc = "3.4"
|
2023-06-14 22:52:37 +08:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2023-03-30 16:35:29 +08:00
|
|
|
crc32fast = "1.3"
|
2023-03-31 12:48:06 +03:00
|
|
|
crossbeam = { version = "0.8.2", features = ["crossbeam-channel"] }
|
2023-07-11 23:16:49 +08:00
|
|
|
consensus-engine = { path = "../consensus-engine", features = ["simulation"] }
|
2023-03-24 21:21:10 +01:00
|
|
|
fixed-slice-deque = "0.1.0-beta2"
|
2023-06-14 22:52:37 +08:00
|
|
|
futures = "0.3"
|
2023-06-15 17:42:42 +08:00
|
|
|
humantime = "2.1"
|
2023-06-14 22:52:37 +08:00
|
|
|
humantime-serde = "1"
|
2023-03-24 21:21:10 +01:00
|
|
|
nomos-core = { path = "../nomos-core" }
|
2023-06-14 22:52:37 +08:00
|
|
|
nomos-consensus = { path = "../nomos-services/consensus" }
|
|
|
|
once_cell = "1.17"
|
2023-05-31 12:57:42 +08:00
|
|
|
parking_lot = "0.12"
|
2023-03-24 21:21:10 +01:00
|
|
|
polars = { version = "0.27", features = ["serde", "object", "json", "csv-file", "parquet", "dtype-struct"] }
|
2023-03-14 07:15:45 -07:00
|
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
2023-03-24 21:21:10 +01:00
|
|
|
rayon = "1.7"
|
2023-04-25 19:14:30 +08:00
|
|
|
scopeguard = "1"
|
2023-03-20 17:13:55 +08:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2023-03-24 21:21:10 +01:00
|
|
|
serde_with = "2.3"
|
2023-03-14 07:15:45 -07:00
|
|
|
serde_json = "1.0"
|
2023-05-11 16:09:53 +08:00
|
|
|
thiserror = "1"
|
2023-06-14 22:52:37 +08:00
|
|
|
tracing = { version = "0.1", default-features = false, features = ["log", "attributes"] }
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "tracing-log"]}
|
2023-03-24 21:21:10 +01:00
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
getrandom = { version = "0.2", features = ["js"] }
|
2023-04-25 19:14:30 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3.4"
|