diff --git a/Cargo.lock b/Cargo.lock index 8b59d81fc3cc..fa47996a44e8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -292,7 +292,7 @@ dependencies = [ "tempfile", "time", "toml", - "toml_edit", + "toml_edit 0.20.2", "tracing", "tracing-subscriber", "unicase", @@ -3265,7 +3265,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.19.14", ] [[package]] @@ -3290,6 +3290,17 @@ dependencies = [ "winnow", ] +[[package]] +name = "toml_edit" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" +dependencies = [ + "indexmap", + "toml_datetime", + "winnow", +] + [[package]] name = "tracing" version = "0.1.37" @@ -3765,7 +3776,7 @@ dependencies = [ name = "xtask-stale-label" version = "0.0.0" dependencies = [ - "toml_edit", + "toml_edit 0.20.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a9b45359926a..553888b0eb3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ tempfile = "3.8.0" thiserror = "1.0.49" time = { version = "0.3", features = ["parsing", "formatting", "serde"] } toml = "0.7.6" -toml_edit = "0.19.14" +toml_edit = "0.20.2" tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } unicase = "2.7.0"