diff --git a/Cargo.lock b/Cargo.lock index 06c09893d..ddff9e95b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1464,7 +1464,7 @@ dependencies = [ "thread_local", "time", "tokio", - "toml 0.7.8", + "toml 0.8.0", "tower", "tower-http", "tower-service", @@ -1484,7 +1484,7 @@ version = "0.1.0" dependencies = [ "serde", "thiserror", - "toml 0.7.8", + "toml 0.8.0", ] [[package]] @@ -6381,7 +6381,19 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.19.15", +] + +[[package]] +name = "toml" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c226a7bba6d859b63c92c4b4fe69c5b6b72d0cb897dbc8e6012298e6154cb56e" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit 0.20.0", ] [[package]] @@ -6406,6 +6418,19 @@ dependencies = [ "winnow", ] +[[package]] +name = "toml_edit" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ff63e60a958cefbb518ae1fd6566af80d9d4be430a33f3723dfc47d1d411d95" +dependencies = [ + "indexmap 2.0.0", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + [[package]] name = "tower" version = "0.4.13" diff --git a/Cargo.toml b/Cargo.toml index 7c9f4e587..fb6d42394 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ failure = "0.1.8" thiserror = "1.0.26" comrak = { version = "0.18.0", default-features = false } syntect = { version = "5.0.0", default-features = false, features = ["parsing", "html", "dump-load", "regex-onig"] } -toml = "0.7.2" +toml = "0.8.0" schemamama = "0.3" schemamama_postgres = "0.3" prometheus = { version = "0.13.0", default-features = false } diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 613eae183..36a2c1606 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -14,5 +14,5 @@ path = "lib.rs" [dependencies] serde = { version = "1.0", features = ["derive"] } -toml = { version = "0.7", default-features = false } +toml = { version = "0.8", default-features = false, features = ["display"] } thiserror = "1"