47 lines
1.8 KiB
TOML
47 lines
1.8 KiB
TOML
[package]
|
|
name = "nomos-da-tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
blst = "0.3.11"
|
|
bytes = "1.2"
|
|
cryptarchia-consensus = { path = "../../../nomos-services/cryptarchia-consensus" }
|
|
cryptarchia-engine = { path = "../../../consensus/cryptarchia-engine", features = ["serde"] }
|
|
cryptarchia-ledger = { path = "../../../ledger/cryptarchia-ledger", features = ["serde"] }
|
|
cl = { path = "../../../cl/cl" }
|
|
full-replication = { path = "../../../nomos-da/full-replication" }
|
|
hex = "0.4.3"
|
|
kzgrs-backend = { path = "../../../nomos-da/kzgrs-backend" }
|
|
nomos-core = { path = "../../../nomos-core" }
|
|
nomos-da-indexer = { path = "../indexer", features = ["rocksdb-backend"] }
|
|
nomos-da-verifier = { path = "../verifier", features = ["rocksdb-backend", "libp2p"] }
|
|
nomos-da-sampling = { path = "../sampling" }
|
|
nomos-da-network-service = { path = "../network" }
|
|
nomos-da-storage = { path = "../../../nomos-da/storage" }
|
|
nomos-node = { path = "../../../nodes/nomos-node" }
|
|
nomos-mempool = { path = "../../../nomos-services/mempool" }
|
|
nomos-storage = { path = "../../../nomos-services/storage", features = ["rocksdb-backend"] }
|
|
nomos-log = { path = "../../log" }
|
|
nomos-network = { path = "../../network", features = ["mock"] }
|
|
nomos-libp2p = { path = "../../../nomos-libp2p" }
|
|
libp2p = { version = "0.53.2", features = ["ed25519"] }
|
|
once_cell = "1.19"
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" }
|
|
rand = "0.8"
|
|
rand_chacha = "0.3"
|
|
subnetworks-assignations = { path = "../../../nomos-da/network/subnetworks-assignations" }
|
|
tokio = { version = "1", features = ["sync"] }
|
|
tokio-stream = "0.1.15"
|
|
tempfile = "3.6"
|
|
tracing = "0.1"
|
|
time = "0.3"
|
|
|
|
[dev-dependencies]
|
|
blake2 = { version = "0.10" }
|
|
|
|
[features]
|
|
default = ["libp2p"]
|
|
libp2p = []
|