65 lines
1.9 KiB
TOML
65 lines
1.9 KiB
TOML
[package]
|
|
name = "tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
nomos-node = { path = "../nodes/nomos-node", default-features = false }
|
|
nomos-consensus = { path = "../nomos-services/consensus" }
|
|
nomos-network = { path = "../nomos-services/network", features = ["libp2p"]}
|
|
nomos-log = { path = "../nomos-services/log" }
|
|
nomos-http = { path = "../nomos-services/http", features = ["http"] }
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" }
|
|
nomos-core = { path = "../nomos-core" }
|
|
consensus-engine = { path = "../consensus-engine", features = ["serde"] }
|
|
nomos-mempool = { path = "../nomos-services/mempool", features = ["mock", "libp2p"] }
|
|
nomos-da = { path = "../nomos-services/data-availability" }
|
|
full-replication = { path = "../nomos-da/full-replication" }
|
|
mixnode = { path = "../nodes/mixnode" }
|
|
mixnet-node = { path = "../mixnet/node" }
|
|
mixnet-client = { path = "../mixnet/client" }
|
|
mixnet-topology = { path = "../mixnet/topology" }
|
|
# Using older versions, since `mixnet-*` crates depend on `rand` v0.7.3.
|
|
rand = "0.7.3"
|
|
once_cell = "1"
|
|
secp256k1 = { version = "0.26", features = ["rand"] }
|
|
reqwest = { version = "0.11", 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" }
|
|
|
|
[[test]]
|
|
name = "test_consensus_happy_path"
|
|
path = "src/tests/happy.rs"
|
|
|
|
[[test]]
|
|
name = "test_consensus_unhappy_path"
|
|
path = "src/tests/unhappy.rs"
|
|
|
|
[[test]]
|
|
name = "test_mixnet"
|
|
path = "src/tests/mixnet.rs"
|
|
|
|
[[test]]
|
|
name = "test_cli"
|
|
path = "src/tests/cli.rs"
|
|
|
|
[[bench]]
|
|
name = "mixnet"
|
|
path = "src/benches/mixnet.rs"
|
|
harness = false
|
|
|
|
|
|
[features]
|
|
metrics = ["nomos-node/metrics"]
|