From 0764975d6c49fc92a87791eaa2f30d9475cb61df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 10:32:06 +0000 Subject: [PATCH] chore(deps): bump toml from 0.7.8 to 0.8.1 Bumps [toml](https://github.com/toml-rs/toml) from 0.7.8 to 0.8.1. - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.7.8...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 +++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 168d0fb2..3acaed5a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2681,7 +2681,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ "once_cell", - "toml_edit", + "toml_edit 0.19.15", ] [[package]] @@ -3573,14 +3573,14 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.8" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" +checksum = "1bc1433177506450fe920e46a4f9812d0c211f5dd556da10e731a0a3dfa151f0" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.20.1", ] [[package]] @@ -3597,6 +3597,17 @@ name = "toml_edit" version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.0.2", + "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 2.0.2", "serde", diff --git a/Cargo.toml b/Cargo.toml index 6db9698e..5baa7034 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ strum_macros = "0.25" tokio = {version = "1", features = ["rt-multi-thread", "sync", "time", "net"]} tokio-util = {version = "0.7.8", features = ["codec"]} tokio-stream = {version = "0.1.14", features = ["sync"]} -toml = "0.7" +toml = "0.8" unicode-width = "0.1.9" url = "2.2" cursive_buffered_backend = "0.6.1"