From 6008845ec84c2b7f51654ef8eb4102680474fd36 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 1 Jan 2023 02:15:37 +0000 Subject: [PATCH] chore(deps): update rust crate toml_edit to 0.16.2 --- Cargo.lock | 33 ++------------------------------- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4d50c12..7335465 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -132,12 +132,6 @@ version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d" -[[package]] -name = "bytes" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" - [[package]] name = "cast" version = "0.3.0" @@ -292,16 +286,6 @@ dependencies = [ "unicase", ] -[[package]] -name = "combine" -version = "4.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" -dependencies = [ - "bytes", - "memchr", -] - [[package]] name = "concolor" version = "0.0.11" @@ -1575,19 +1559,6 @@ dependencies = [ "serde", ] -[[package]] -name = "toml_edit" -version = "0.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1541ba70885967e662f69d31ab3aeca7b1aaecfcd58679590b893e9239c3646" -dependencies = [ - "combine", - "indexmap", - "itertools", - "serde", - "toml_datetime", -] - [[package]] name = "toml_edit" version = "0.16.2" @@ -1614,7 +1585,7 @@ dependencies = [ "serde", "shlex", "snapbox", - "toml_edit 0.16.2", + "toml_edit", ] [[package]] @@ -1671,7 +1642,7 @@ dependencies = [ "serde", "serde_json", "thread_local", - "toml_edit 0.15.0", + "toml_edit", "trycmd", "typed-arena", "typos", diff --git a/Cargo.toml b/Cargo.toml index 89f85d2..7475c11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,7 +69,7 @@ clap = { version = "4.0.32", features = ["derive"] } clap-verbosity-flag = "2.0" ignore = "0.4" serde = { version = "1.0", features = ["derive"] } -toml_edit = { version = "0.15.0", features = ["easy"] } +toml_edit = { version = "0.16.2", features = ["easy"] } log = "0.4" env_logger = { version = "0.10", default-features = false, features = ["auto-color"] } atty = "0.2.14"