diff --git a/Cargo.lock b/Cargo.lock index c50efd3a01f..13fe8973cd7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3764,7 +3764,7 @@ dependencies = [ "tokio-retry", "tokio-stream", "tokio-util", - "toml 0.9.11+spec-1.1.0", + "toml 1.0.3+spec-1.1.0", "tonic", "tonic-prost", "tonic-prost-build", @@ -5228,7 +5228,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36c791ecdf977c99f45f23280405d7723727470f6689a5e6dbf513ac547ae10d" dependencies = [ "serde", - "toml 0.9.11+spec-1.1.0", + "toml 0.9.12+spec-1.1.0", ] [[package]] @@ -8029,15 +8029,28 @@ dependencies = [ [[package]] name = "toml" -version = "0.9.11+spec-1.1.0" +version = "0.9.12+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46" +checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" dependencies = [ - "indexmap 2.11.4", "serde_core", "serde_spanned 1.0.4", "toml_datetime 0.7.5+spec-1.1.0", "toml_parser", + "winnow 0.7.13", +] + +[[package]] +name = "toml" +version = "1.0.3+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7614eaf19ad818347db24addfa201729cf2a9b6fdfd9eb0ab870fcacc606c0c" +dependencies = [ + "indexmap 2.11.4", + "serde_core", + "serde_spanned 1.0.4", + "toml_datetime 1.0.0+spec-1.1.0", + "toml_parser", "toml_writer", "winnow 0.7.13", ] @@ -8060,6 +8073,15 @@ dependencies = [ "serde_core", ] +[[package]] +name = "toml_datetime" +version = "1.0.0+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" +dependencies = [ + "serde_core", +] + [[package]] name = "toml_edit" version = "0.21.1" @@ -8086,9 +8108,9 @@ dependencies = [ [[package]] name = "toml_parser" -version = "1.0.6+spec-1.1.0" +version = "1.0.9+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" +checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" dependencies = [ "winnow 0.7.13", ] diff --git a/graph/Cargo.toml b/graph/Cargo.toml index 9557098ef27..73604b59ffd 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -66,7 +66,7 @@ tiny-keccak = "1.5.0" tokio = { workspace = true} tokio-stream = { workspace = true } tokio-retry = { workspace = true } -toml = "0.9.11" +toml = "1.0.3" url = { workspace = true } prometheus = "0.14.0" priority-queue = "2.7.0"