4cd3d040f3
* Improve indexer test * Use workspace gh api token * Unpin rustls version for libp2p
40 lines
1.5 KiB
TOML
40 lines
1.5 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"] }
|
|
full-replication = { path = "../../../nomos-da/full-replication" }
|
|
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-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" }
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" }
|
|
tokio = { version = "1", features = ["sync"] }
|
|
tokio-stream = "0.1.15"
|
|
tempfile = "3.6"
|
|
tracing = "0.1"
|
|
time = "0.3"
|
|
rand = "0.8"
|
|
|
|
[dev-dependencies]
|
|
blake2 = { version = "0.10" }
|
|
|
|
[features]
|
|
default = []
|
|
libp2p = []
|
|
mixnet = []
|