29 lines
848 B
TOML
29 lines
848 B
TOML
[package]
|
|
name = "zombienet-configuration"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Zombienet sdk config builder, allow to build a network configuration"
|
|
keywords = ["configuration", "sdk", "zombienet"]
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
multiaddr = { workspace = true }
|
|
regex = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["fs"] }
|
|
toml = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true, features = ["serde"] }
|
|
|
|
# zombienet deps
|
|
support = { workspace = true }
|