diff --git a/Cargo.lock b/Cargo.lock index b428e68..d65ee88 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -452,9 +452,9 @@ dependencies = [ [[package]] name = "config" -version = "0.15.21" +version = "0.15.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fe5feec195269515c4722937cd7ffcfe7b4205d18d2e6577b7223ecb159ab00" +checksum = "8e68cfe19cd7d23ffde002c24ffa5cda73931913ef394d5eaaa32037dc940c0c" dependencies = [ "async-trait", "convert_case", @@ -466,7 +466,7 @@ dependencies = [ "serde_core", "serde_json", "toml", - "winnow", + "winnow 1.0.1", "yaml-rust2", ] @@ -3473,7 +3473,7 @@ dependencies = [ "serde_spanned", "toml_datetime", "toml_parser", - "winnow", + "winnow 0.7.15", ] [[package]] @@ -3491,7 +3491,7 @@ version = "1.0.9+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" dependencies = [ - "winnow", + "winnow 0.7.15", ] [[package]] @@ -4390,6 +4390,12 @@ name = "winnow" version = "0.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" + +[[package]] +name = "winnow" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5" dependencies = [ "memchr", ] diff --git a/examples/sync-pull-dataplane/Cargo.toml b/examples/sync-pull-dataplane/Cargo.toml index 2606a65..13e20f1 100644 --- a/examples/sync-pull-dataplane/Cargo.toml +++ b/examples/sync-pull-dataplane/Cargo.toml @@ -25,5 +25,5 @@ reqwest.workspace=true serde_json.workspace=true async-trait.workspace=true base64 = "0.22.1" -config = "0.15.21" +config = "0.15.22" tower-http = { version = "0.6.6", features = ["trace"]}