From 192ef128ce06266c52cc7e04ff55d872b2a8424b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 13:44:34 -0700 Subject: [PATCH] chore(deps): bump toml from 0.7.8 to 0.8.2 (#665) Bumps [toml](https://github.com/toml-rs/toml) from 0.7.8 to 0.8.2. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.8...toml-v0.8.2) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 10 +++++----- rust/noosphere-ns/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c2ae8514f..de047c774 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3687,7 +3687,7 @@ dependencies = [ "tempfile", "thiserror", "tokio", - "toml 0.7.8", + "toml 0.8.2", "tower-http", "tracing", "ucan", @@ -5585,9 +5585,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.8" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" dependencies = [ "serde", "serde_spanned", @@ -5606,9 +5606,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.15" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" dependencies = [ "indexmap 2.0.0", "serde", diff --git a/rust/noosphere-ns/Cargo.toml b/rust/noosphere-ns/Cargo.toml index e9c239732..84e341513 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -47,7 +47,7 @@ noosphere = { version = "0.15.2", path = "../noosphere", optional = true } noosphere-ipfs = { version = "0.8.2", path = "../noosphere-ipfs", optional = true } clap = { version = "^4.4", features = ["derive"], optional = true } home = { version = "~0.5", optional = true } -toml = { version = "~0.7", optional = true } +toml = { version = "~0.8", optional = true } # noosphere_ns::server axum = { workspace = true, features = ["json", "headers", "macros"], optional = true }