From 42031fc75128456279a1b3e66d804eca18e2ae87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 18:20:20 +0000 Subject: [PATCH] chore(deps): bump toml from 0.7.6 to 0.8.1 Bumps [toml](https://github.com/toml-rs/toml) from 0.7.6 to 0.8.1. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.8.1) --- updated-dependencies: - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 19 +++++++++++++++---- serdect/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d0d9a00d8..b1ea92414 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1394,7 +1394,7 @@ dependencies = [ "serde-json-core", "serde_json", "toml", - "toml_edit", + "toml_edit 0.19.14", "zeroize", ] @@ -1587,14 +1587,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.6" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" +checksum = "1bc1433177506450fe920e46a4f9812d0c211f5dd556da10e731a0a3dfa151f0" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.20.1", ] [[package]] @@ -1611,6 +1611,17 @@ name = "toml_edit" version = "0.19.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" +dependencies = [ + "indexmap", + "toml_datetime", + "winnow", +] + +[[package]] +name = "toml_edit" +version = "0.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca676d9ba1a322c1b64eb8045a5ec5c0cfb0c9d08e15e9ff622589ad5221c8fe" dependencies = [ "indexmap", "serde", diff --git a/serdect/Cargo.toml b/serdect/Cargo.toml index 7ae62bd74..bae8a02ed 100644 --- a/serdect/Cargo.toml +++ b/serdect/Cargo.toml @@ -29,7 +29,7 @@ proptest = "1" serde = { version = "1.0.184", default-features = false, features = ["derive"] } serde_json = "1" serde-json-core = { version = "0.5", default-features = false, features = ["std"] } -toml = "0.7" +toml = "0.8" toml_edit = "=0.19.14" # pinned to preserve MSRV [features]