* add node IDs in message * integrate * handle variable-lenght messages in nomos-mix-network * add trait MixMessage * make tests work * clippy happy * remove println! * remove unnecssary dependency * remove unnecessary trait bounds * remove leftover
50 lines
2.0 KiB
TOML
50 lines
2.0 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"] }
|
|
nomos-ledger = { path = "../../../ledger/nomos-ledger", features = ["serde"] }
|
|
cl = { path = "../../../nomos-core/cl" }
|
|
full-replication = { path = "../../../nomos-da/full-replication" }
|
|
hex = "0.4.3"
|
|
kzgrs-backend = { path = "../../../nomos-da/kzgrs-backend" }
|
|
nomos-core = { path = "../../../nomos-core/chain-defs" }
|
|
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-network = { path = "../../network", features = ["mock"] }
|
|
nomos-mix-service = { path = "../../mix" }
|
|
nomos-mix = { path = "../../../nomos-mix/core" }
|
|
nomos-mix-message = { path = "../../../nomos-mix/message" }
|
|
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" }
|
|
x25519-dalek = { version = "2", features = ["getrandom", "static_secrets"] }
|
|
|
|
[features]
|
|
default = ["libp2p"]
|
|
libp2p = []
|