From db55a96f9157e44b0cb3d0d2c8b5b17197312167 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 11:10:34 +0200 Subject: [PATCH] build(deps): bump toml from 0.5.11 to 0.8.14 (#4805) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * build(deps): bump toml from 0.5.11 to 0.8.14 Bumps [toml](https://github.com/toml-rs/toml) from 0.5.11 to 0.8.14. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.5.11...toml-v0.8.14) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Use workspace dependency --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jon Häggblad --- Cargo.lock | 50 ++++------------------- common/config/Cargo.toml | 2 +- mixnode/Cargo.toml | 2 +- sdk/rust/nym-sdk/Cargo.toml | 2 +- tools/internal/testnet-manager/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 46 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eaef4cec51..02fe814d8f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2342,7 +2342,7 @@ dependencies = [ "atomic 0.6.0", "pear", "serde", - "toml 0.8.14", + "toml", "uncased", "version_check", ] @@ -4378,7 +4378,7 @@ dependencies = [ "thiserror", "time", "tokio", - "toml 0.8.14", + "toml", "url", "zeroize", ] @@ -4641,7 +4641,7 @@ dependencies = [ "log", "nym-network-defaults", "serde", - "toml 0.7.8", + "toml", "url", ] @@ -5258,7 +5258,7 @@ dependencies = [ "time", "tokio", "tokio-util", - "toml 0.5.11", + "toml", "url", ] @@ -5438,7 +5438,7 @@ dependencies = [ "sysinfo", "thiserror", "tokio", - "toml 0.8.14", + "toml", "tracing", "url", "zeroize", @@ -5644,7 +5644,7 @@ dependencies = [ "tokio", "tokio-stream", "tokio-util", - "toml 0.5.11", + "toml", "url", "zeroize", ] @@ -8665,7 +8665,7 @@ dependencies = [ "serde", "serde_json", "tendermint 0.37.0", - "toml 0.8.14", + "toml", "url", ] @@ -8779,7 +8779,7 @@ dependencies = [ "thiserror", "time", "tokio", - "toml 0.8.14", + "toml", "tracing", "url", "zeroize", @@ -9054,27 +9054,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "toml" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" -dependencies = [ - "serde", -] - -[[package]] -name = "toml" -version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" -dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit 0.19.15", -] - [[package]] name = "toml" version = "0.8.14" @@ -9096,19 +9075,6 @@ dependencies = [ "serde", ] -[[package]] -name = "toml_edit" -version = "0.19.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" -dependencies = [ - "indexmap 2.2.6", - "serde", - "serde_spanned", - "toml_datetime", - "winnow 0.5.40", -] - [[package]] name = "toml_edit" version = "0.21.1" diff --git a/common/config/Cargo.toml b/common/config/Cargo.toml index 6ff3efc432..fb68a92970 100644 --- a/common/config/Cargo.toml +++ b/common/config/Cargo.toml @@ -12,7 +12,7 @@ dirs = { version = "5.0.1", optional = true } handlebars = { workspace = true } log = { workspace = true } serde = { workspace = true, features = ["derive"] } -toml = "0.7.4" +toml = { workspace = true } url = { workspace = true } nym-network-defaults = { path = "../network-defaults", features = ["utoipa"] } diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index 6066817e0c..c2546c000c 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -35,7 +35,7 @@ sysinfo = { workspace = true } time.workspace = true tokio = { workspace = true, features = ["rt-multi-thread", "net", "signal"] } tokio-util = { workspace = true, features = ["codec"] } -toml = "0.5.8" +toml = { workspace = true } url = { workspace = true, features = ["serde"] } thiserror = { workspace = true } diff --git a/sdk/rust/nym-sdk/Cargo.toml b/sdk/rust/nym-sdk/Cargo.toml index d1170d3973..073f1a88ed 100644 --- a/sdk/rust/nym-sdk/Cargo.toml +++ b/sdk/rust/nym-sdk/Cargo.toml @@ -44,7 +44,7 @@ rand = { workspace = true } tap = { workspace = true } thiserror = { workspace = true } url = { workspace = true } -toml = "0.5.10" +toml = { workspace = true } [dev-dependencies] anyhow = { workspace = true } diff --git a/tools/internal/testnet-manager/Cargo.toml b/tools/internal/testnet-manager/Cargo.toml index bea1c68d4f..d5384a9953 100644 --- a/tools/internal/testnet-manager/Cargo.toml +++ b/tools/internal/testnet-manager/Cargo.toml @@ -24,7 +24,7 @@ tempfile = { workspace = true } thiserror.workspace = true time = { workspace = true, features = ["parsing", "formatting"] } tokio = { workspace = true, features = ["rt-multi-thread", "macros", "process"] } -toml = "0.8.14" +toml = { workspace = true } tracing.workspace = true url.workspace = true zeroize = { workspace = true, features = ["zeroize_derive"] }