diff --git a/Cargo.lock b/Cargo.lock index 6040051..64470c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -268,8 +268,8 @@ dependencies = [ "tempfile", "termcolor", "time 0.3.23", - "toml", - "toml_edit", + "toml 0.7.6", + "toml_edit 0.19.14", "unicode-width", "unicode-xid", "url", @@ -288,7 +288,7 @@ dependencies = [ "fs_extra", "patch", "semver", - "toml", + "toml 0.8.2", ] [[package]] @@ -327,7 +327,7 @@ dependencies = [ "tar", "termcolor", "time 0.3.23", - "toml", + "toml 0.7.6", "url", "windows-sys 0.48.0", ] @@ -2679,7 +2679,19 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.19.14", +] + +[[package]] +name = "toml" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit 0.20.2", ] [[package]] @@ -2704,6 +2716,19 @@ dependencies = [ "winnow", ] +[[package]] +name = "toml_edit" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" +dependencies = [ + "indexmap 2.0.0", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + [[package]] name = "typenum" version = "1.16.0" diff --git a/Cargo.toml b/Cargo.toml index c118d61..40236a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ cargo = "0.72" fs_extra = "1" patch = "0.7" semver = "1" -toml = "0.7" +toml = "0.8" [dev-dependencies] cargo-test-macro = { git = "https://github.com/rust-lang/cargo.git", version = "0.1.0", tag = "0.72.1" }