From 09b43a1987d2da068cedca41037adaeccf6633a5 Mon Sep 17 00:00:00 2001 From: xxchan Date: Tue, 24 Oct 2023 23:22:58 +0800 Subject: [PATCH] update toml_edit to 0.20 --- Cargo.lock | 19 +++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ba9688d7961..ca8ed967b97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -586,7 +586,7 @@ dependencies = [ "term", "thiserror", "toml", - "toml_edit", + "toml_edit 0.20.4", "tracing", "tracing-subscriber", "unicode-segmentation", @@ -759,14 +759,14 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.19.14", ] [[package]] name = "toml_datetime" -version = "0.6.3" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" dependencies = [ "serde", ] @@ -784,6 +784,17 @@ dependencies = [ "winnow", ] +[[package]] +name = "toml_edit" +version = "0.20.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "380f9e8120405471f7c9ad1860a713ef5ece6a670c7eae39225e477340f32fc4" +dependencies = [ + "indexmap", + "toml_datetime", + "winnow", +] + [[package]] name = "tracing" version = "0.1.37" diff --git a/Cargo.toml b/Cargo.toml index eeec16ade31..712c21b7812 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ thiserror = "1.0.40" toml = "0.7.4" tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } -toml_edit = "0.19.14" +toml_edit = "0.20.4" unicode-segmentation = "1.9" unicode-width = "0.1" unicode_categories = "0.1"