diff --git a/Cargo.lock b/Cargo.lock index 4a04ed2..5291bab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1848,7 +1848,7 @@ dependencies = [ "tokio-postgres", "tokio-uring", "tokio-util", - "toml 0.7.8", + "toml 0.8.1", "tracing", "tracing-actix-web", "tracing-error", @@ -2910,7 +2910,19 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.19.15", +] + +[[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]] @@ -2935,6 +2947,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.0", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + [[package]] name = "tonic" version = "0.9.2" diff --git a/Cargo.toml b/Cargo.toml index b246e2f..79abb15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ tokio-util = { version = "0.7", default-features = false, features = [ "codec", "io", ] } -toml = "0.7.0" +toml = "0.8.0" tracing = "0.1.15" tracing-error = "0.2.0" tracing-log = "0.1.2"