66 lines
2.6 KiB
TOML
66 lines
2.6 KiB
TOML
[package]
|
|
name = "tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
blst = { version = "0.3.11" }
|
|
executor-http-client = { path = "../clients/executor-http-client" }
|
|
nomos-node = { path = "../nodes/nomos-node", default-features = false }
|
|
nomos-executor = { path = "../nodes/nomos-executor", default-features = false }
|
|
nomos-network = { path = "../nomos-services/network", features = ["libp2p"] }
|
|
nomos-mix-service = { path = "../nomos-services/mix", features = ["libp2p"] }
|
|
nomos-mix = { path = "../nomos-mix/core" }
|
|
nomos-mix-message = { path = "../nomos-mix/message" }
|
|
cryptarchia-consensus = { path = "../nomos-services/cryptarchia-consensus" }
|
|
nomos-tracing = { path = "../nomos-tracing" }
|
|
nomos-tracing-service = { path = "../nomos-services/tracing" }
|
|
nomos-api = { path = "../nomos-services/api" }
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
nomos-core = { path = "../nomos-core/chain-defs" }
|
|
cryptarchia-engine = { path = "../consensus/cryptarchia-engine", features = ["serde"] }
|
|
nomos-ledger = { path = "../ledger/nomos-ledger", features = ["serde"] }
|
|
cl = { path = "../nomos-core/cl" }
|
|
nomos-mempool = { path = "../nomos-services/mempool", features = ["mock", "libp2p"] }
|
|
nomos-da-network-service = { path = "../nomos-services/data-availability/network" }
|
|
nomos-da-dispersal = { path = "../nomos-services/data-availability/dispersal" }
|
|
nomos-da-indexer = { path = "../nomos-services/data-availability/indexer" }
|
|
nomos-da-verifier = { path = "../nomos-services/data-availability/verifier" }
|
|
nomos-da-sampling = { path = "../nomos-services/data-availability/sampling" }
|
|
nomos-storage = { path = "../nomos-services/storage" }
|
|
subnetworks-assignations = { path = "../nomos-da/network/subnetworks-assignations" }
|
|
full-replication = { path = "../nomos-da/full-replication" }
|
|
hex = "0.4.3"
|
|
kzgrs-backend = { path = "../nomos-da/kzgrs-backend" }
|
|
rand = "0.8"
|
|
once_cell = "1"
|
|
secp256k1 = { version = "0.26", features = ["rand"] }
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
nomos-libp2p = { path = "../nomos-libp2p" }
|
|
tempfile = "3.6"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
serde_json = "1.0"
|
|
tokio = "1"
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
fraction = "0.13"
|
|
ntest = "0.9.0"
|
|
criterion = { version = "0.5", features = ["async_tokio"] }
|
|
nomos-cli = { path = "../nomos-cli" }
|
|
time = "0.3"
|
|
tracing = "0.1"
|
|
x25519-dalek = { version = "2", features = ["getrandom", "static_secrets"] }
|
|
|
|
[[test]]
|
|
name = "test_cryptarchia_happy_path"
|
|
path = "src/tests/cryptarchia/happy.rs"
|
|
|
|
[[test]]
|
|
name = "test_da"
|
|
path = "src/tests/da.rs"
|
|
|
|
[features]
|
|
debug = []
|