From 379739a244545187cf08e0816caba6bed5f8efc1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Mar 2023 16:05:37 +0000 Subject: [PATCH] cargo: bump toml_edit from 0.19.1 to 0.19.4 Bumps [toml_edit](https://github.com/ordian/toml_edit) from 0.19.1 to 0.19.4. - [Release notes](https://github.com/ordian/toml_edit/releases) - [Commits](https://github.com/ordian/toml_edit/compare/v0.19.1...v0.19.4) --- updated-dependencies: - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a5bd84f48..8d6d61aa8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1024,15 +1024,6 @@ dependencies = [ "minimal-lexical", ] -[[package]] -name = "nom8" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" -dependencies = [ - "memchr", -] - [[package]] name = "normalize-line-endings" version = "0.3.0" @@ -1896,15 +1887,15 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.19.1" +version = "0.19.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90a238ee2e6ede22fb95350acc78e21dc40da00bb66c0334bde83de4ed89424e" +checksum = "9a1eb0622d28f4b9c90adc4ea4b2b46b47663fde9ac5fafcb14a1369d5508825" dependencies = [ "indexmap", - "nom8", "serde", "serde_spanned", "toml_datetime", + "winnow", ] [[package]] @@ -2270,6 +2261,15 @@ version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" +[[package]] +name = "winnow" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faf09497b8f8b5ac5d3bb4d05c0a99be20f26fd3d5f2db7b0716e946d5103658" +dependencies = [ + "memchr", +] + [[package]] name = "yaml-rust" version = "0.4.5" diff --git a/Cargo.toml b/Cargo.toml index 48f942ab2..7706f1916 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ thiserror = "1.0.38" tracing = "0.1.37" tracing-subscriber = { version = "0.3.16", default-features = false, features = ["std", "ansi", "env-filter", "fmt"] } indexmap = "1.9.2" -toml_edit = { version = "0.19.1", features = ["serde"] } +toml_edit = { version = "0.19.4", features = ["serde"] } [target.'cfg(unix)'.dependencies] libc = { version = "0.2.139" }