22 lines
576 B
TOML
22 lines
576 B
TOML
[package]
|
|
name = "query-tester"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
anyhow = { workspace = true }
|
|
nym-validator-client = { path = "../common/client-libs/validator-client" }
|
|
nym-network-defaults = { path = "../common/network-defaults" }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
[lints]
|
|
workspace = true
|