From 33583982632965c1efbd4d0e6f3cacc37ae63479 Mon Sep 17 00:00:00 2001 From: Fran Arbanas Date: Tue, 29 Oct 2024 11:07:47 +0100 Subject: [PATCH] chore: bump version of node status agent --- nym-node-status-agent/Cargo.toml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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"] }