28 lines
846 B
TOML
28 lines
846 B
TOML
[package]
|
|
name = "simulations"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
arc-swap = "1.6"
|
|
clap = { version = "4", features = ["derive"] }
|
|
crc32fast = "1.3"
|
|
crossbeam = { version = "0.8.2", features = ["crossbeam-channel"] }
|
|
fixed-slice-deque = "0.1.0-beta2"
|
|
nomos-core = { path = "../nomos-core" }
|
|
polars = { version = "0.27", features = ["serde", "object", "json", "csv-file", "parquet", "dtype-struct"] }
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
rayon = "1.7"
|
|
scopeguard = "1"
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_with = "2.3"
|
|
serde_json = "1.0"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.4" |