From 3f806a4aea16f7035726b8184434b304a8c754e4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 03:30:10 +0000 Subject: [PATCH] chore(deps): update rust crate toml to 0.8.1 --- Cargo.lock | 33 +++++++++++++++++++++++++++++---- crates/typos-cli/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3b83a64..f4bf54e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -785,7 +785,7 @@ dependencies = [ "os_info", "serde", "serde_derive", - "toml", + "toml 0.7.6", "uuid", ] @@ -1551,7 +1551,19 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.19.14", +] + +[[package]] +name = "toml" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc1433177506450fe920e46a4f9812d0c211f5dd556da10e731a0a3dfa151f0" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit 0.20.1", ] [[package]] @@ -1576,6 +1588,19 @@ dependencies = [ "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", + "serde_spanned", + "toml_datetime", + "winnow", +] + [[package]] name = "trycmd" version = "0.14.18" @@ -1589,7 +1614,7 @@ dependencies = [ "serde", "shlex", "snapbox", - "toml_edit", + "toml_edit 0.19.14", ] [[package]] @@ -1650,7 +1675,7 @@ dependencies = [ "serde_regex", "snapbox", "thread_local", - "toml", + "toml 0.8.1", "trycmd", "typed-arena", "typos", diff --git a/crates/typos-cli/Cargo.toml b/crates/typos-cli/Cargo.toml index 015ff79..39cc3f4 100644 --- a/crates/typos-cli/Cargo.toml +++ b/crates/typos-cli/Cargo.toml @@ -49,7 +49,7 @@ clap = { version = "4.4.6", features = ["derive"] } clap-verbosity-flag = "2.0" ignore = "0.4" serde = { version = "1.0", features = ["derive"] } -toml = "0.7.6" +toml = "0.8.1" log = "0.4" env_logger = { version = "0.10", default-features = false, features = ["auto-color"] } atty = "0.2.14"