[package] name = "tests" version = "0.1.0" edition = "2021" publish = false [dependencies] nomos-node = { path = "../nodes/nomos-node", default-features = false } nomos-network = { path = "../nomos-services/network", features = ["libp2p"] } cryptarchia-consensus = { path = "../nomos-services/cryptarchia-consensus" } mixnet = { path = "../mixnet" } nomos-log = { path = "../nomos-services/log" } nomos-api = { path = "../nomos-services/api" } overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" } nomos-core = { path = "../nomos-core" } cryptarchia-engine = { path = "../consensus/cryptarchia-engine", features = ["serde"] } cryptarchia-ledger = { path = "../ledger/cryptarchia-ledger", 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" } rand = "0.8" 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" } time = "0.3" [[test]] name = "test_cryptarchia_happy_path" path = "src/tests/cryptarchia/happy.rs" [[test]] name = "test_cli" path = "src/tests/cli.rs" [features] mixnet = ["nomos-network/mixnet"] metrics = ["nomos-node/metrics"]