diff --git a/Cargo.lock b/Cargo.lock index 154167e15528d..c03de9378aaaa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6148,7 +6148,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ "once_cell", - "toml_edit", + "toml_edit 0.19.15", ] [[package]] @@ -6883,7 +6883,7 @@ dependencies = [ "risingwave_storage", "serde", "tokio-stream", - "toml 0.7.8", + "toml 0.8.0", "tracing", "tracing-subscriber", "workspace-hack", @@ -7023,7 +7023,7 @@ dependencies = [ "tempfile", "thiserror", "tinyvec", - "toml 0.7.8", + "toml 0.8.0", "tower-layer", "tower-service", "tracing", @@ -7892,7 +7892,7 @@ dependencies = [ "serde_with 3.3.0", "tokio-postgres", "tokio-stream", - "toml 0.7.8", + "toml 0.8.0", "tracing", "workspace-hack", ] @@ -9941,7 +9941,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]] @@ -9966,6 +9978,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 = "tonic" version = "0.9.2" @@ -10899,7 +10924,7 @@ dependencies = [ "tokio-stream", "tokio-util", "toml_datetime", - "toml_edit", + "toml_edit 0.19.15", "tonic", "tower", "tracing", diff --git a/src/bench/Cargo.toml b/src/bench/Cargo.toml index d3c74e385a4fe..31b8f5ce7cc94 100644 --- a/src/bench/Cargo.toml +++ b/src/bench/Cargo.toml @@ -38,7 +38,7 @@ tokio = { version = "0.2", package = "madsim-tokio", features = [ "signal", ] } tokio-stream = "0.1" -toml = "0.7" +toml = "0.8" tracing = "0.1" tracing-subscriber = "0.3.17" diff --git a/src/common/Cargo.toml b/src/common/Cargo.toml index 707e14f9178b0..bcc3d36c71167 100644 --- a/src/common/Cargo.toml +++ b/src/common/Cargo.toml @@ -94,7 +94,7 @@ tokio = { version = "0.2", package = "madsim-tokio", features = [ "time", "signal", ] } -toml = "0.7" +toml = "0.8" tonic = { workspace = true } tracing = "0.1" tracing-opentelemetry = "0.21" diff --git a/src/tests/state_cleaning_test/Cargo.toml b/src/tests/state_cleaning_test/Cargo.toml index 2116e1d58659a..d9154309f4a99 100644 --- a/src/tests/state_cleaning_test/Cargo.toml +++ b/src/tests/state_cleaning_test/Cargo.toml @@ -25,7 +25,7 @@ serde_with = "3" tokio = { version = "0.2", package = "madsim-tokio" } tokio-postgres = "0.7" tokio-stream = { version = "0.1", features = ["fs"] } -toml = "0.7" +toml = "0.8" tracing = "0.1" [target.'cfg(not(madsim))'.dependencies]