mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-02 13:23:13 +00:00
53 lines
2.2 KiB
TOML
53 lines
2.2 KiB
TOML
|
|
[package]
|
||
|
|
categories.workspace = true
|
||
|
|
description.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
keywords.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
name = "testing-framework-core"
|
||
|
|
readme.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
version = "0.1.0"
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = []
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
anyhow = "1"
|
||
|
|
async-trait = "0.1"
|
||
|
|
broadcast-service = { workspace = true }
|
||
|
|
chain-service = { workspace = true }
|
||
|
|
common-http-client = { workspace = true }
|
||
|
|
futures = { default-features = false, version = "0.3" }
|
||
|
|
groth16 = { workspace = true }
|
||
|
|
hex = { version = "0.4.3", default-features = false }
|
||
|
|
key-management-system = { workspace = true }
|
||
|
|
kzgrs-backend = { workspace = true }
|
||
|
|
nomos-core = { workspace = true }
|
||
|
|
nomos-da-network-core = { workspace = true }
|
||
|
|
nomos-da-network-service = { workspace = true }
|
||
|
|
nomos-executor = { workspace = true, default-features = false, features = ["testing", "tracing"] }
|
||
|
|
nomos-http-api-common = { workspace = true }
|
||
|
|
nomos-libp2p = { workspace = true }
|
||
|
|
nomos-network = { workspace = true, features = ["libp2p"] }
|
||
|
|
nomos-node = { workspace = true, default-features = false, features = ["testing"] }
|
||
|
|
nomos-tracing = { workspace = true }
|
||
|
|
nomos-tracing-service = { workspace = true }
|
||
|
|
nomos-utils = { workspace = true }
|
||
|
|
prometheus-http-query = "0.8"
|
||
|
|
rand = { workspace = true }
|
||
|
|
reqwest = { workspace = true, features = ["json"] }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
serde_with = { workspace = true }
|
||
|
|
serde_yaml = { workspace = true }
|
||
|
|
tempfile = { workspace = true }
|
||
|
|
testing-framework-config = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
tokio = { workspace = true, features = ["macros", "process", "rt-multi-thread", "time"] }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tx-service = { workspace = true, features = ["libp2p", "mock"] }
|