diff --git a/nym-node-status-agent/Cargo.toml b/nym-node-status-agent/Cargo.toml index a2ce8cdf97..94ac3dacd2 100644 --- a/nym-node-status-agent/Cargo.toml +++ b/nym-node-status-agent/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-node-status-agent" -version = "0.1.0" +version = "0.1.1" authors.workspace = true repository.workspace = true homepage.workspace = true @@ -15,11 +15,15 @@ rust-version.workspace = true readme.workspace = true [dependencies] -anyhow = { workspace = true} +anyhow = { workspace = true } clap = { workspace = true, features = ["derive", "env"] } -nym-bin-common = { path = "../common/bin-common", features = ["models"]} +nym-bin-common = { path = "../common/bin-common", features = ["models"] } nym-common-models = { path = "../common/models" } -tokio = { workspace = true, features = ["macros", "rt-multi-thread", "process"] } +tokio = { workspace = true, features = [ + "macros", + "rt-multi-thread", + "process", +] } tokio-util = { workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] }