[package] name = "test-helpers" version = "0.0.0" edition = { workspace = true } license = { workspace = true } publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] fuel-core = { path = "../../crates/fuel-core", default-features = false, features = [ "test-helpers", ] } fuel-core-client = { path = "../../crates/client", features = ["test-helpers"] } fuel-core-p2p = { path = "../../crates/services/p2p", features = [ "test-helpers", ], optional = true } fuel-core-poa = { path = "../../crates/services/consensus_module/poa" } fuel-core-relayer = { path = "../../crates/services/relayer", features = [ "test-helpers", ], optional = true } fuel-core-storage = { path = "../../crates/storage", features = [ "test-helpers", ] } fuel-core-trace = { path = "../../crates/trace" } fuel-core-txpool = { path = "../../crates/services/txpool", features = [ "test-helpers", ] } fuel-core-types = { path = "../../crates/types", features = ["test-helpers"] } itertools = { workspace = true } rand = { workspace = true }