diff --git a/Cargo.lock b/Cargo.lock index c75c1cbe..32414903 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,6 +111,15 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" +[[package]] +name = "archery" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6cd774058b1b415c4855d8b86436c04bf050c003156fe24bc326fb3fe75c343" +dependencies = [ + "static_assertions", +] + [[package]] name = "argh" version = "0.1.10" @@ -2955,7 +2964,7 @@ name = "influxdb2-derive" version = "0.1.1" source = "git+https://github.com/llamanodes/influxdb2?rev=2d125128696a29d7e0b9abc052c928937e7c0579#2d125128696a29d7e0b9abc052c928937e7c0579" dependencies = [ - "itertools", + "itertools 0.10.5", "proc-macro2", "quote", "regex", @@ -3060,6 +3069,15 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.6" @@ -3140,7 +3158,7 @@ dependencies = [ "diff", "ena", "is-terminal", - "itertools", + "itertools 0.10.5", "lalrpop-util", "petgraph", "regex", @@ -4322,7 +4340,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" dependencies = [ "anyhow", - "itertools", + "itertools 0.10.5", "proc-macro2", "quote", "syn 1.0.109", @@ -4805,6 +4823,15 @@ dependencies = [ "serde", ] +[[package]] +name = "rpds" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bd6ce569b15c331b1e5fd8cf6adb0bf240678b5f0cdc4d0f41e11683f6feba9" +dependencies = [ + "archery", +] + [[package]] name = "rsa" version = "0.6.1" @@ -5448,12 +5475,13 @@ dependencies = [ [[package]] name = "serde_prometheus" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f165c1172b0be12cee1771b8d7f38ea324621693acfd3e8b8d3e1951f7df56e" +checksum = "c0aecf898386263b0605829138f6f9c85c66ceefe9d6b28f57a846e03a3470f0" dependencies = [ "heapless", "nom", + "rpds", "serde", "serde_plain", "thiserror", @@ -5701,7 +5729,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a94494913728908efa7a25a2dd2e4f037e714897985c24273c40596638ed909" dependencies = [ - "itertools", + "itertools 0.10.5", "lalrpop", "lalrpop-util", "phf", @@ -5760,7 +5788,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e" dependencies = [ - "itertools", + "itertools 0.10.5", "nom", "unicode_categories", ] @@ -7008,7 +7036,7 @@ dependencies = [ "influxdb2", "influxdb2-structmap", "ipnet", - "itertools", + "itertools 0.11.0", "latency", "listenfd", "log", diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index a8f8b92c..ba68b5e5 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -65,7 +65,7 @@ hostname = "0.3.1" http = "0.2.9" hyper = { version = "0.14.26", features = ["full", "nightly"] } ipnet = "2.7.2" -itertools = "0.10.5" +itertools = "0.11.0" listenfd = "1.0.1" log = "0.4.19" mimalloc = { version = "0.1.37", optional = true} @@ -87,7 +87,7 @@ rust_decimal = { version = "1.30.0", features = ["maths"] } sentry = { version = "0.31.5", default-features = false, features = ["backtrace", "contexts", "panic", "anyhow", "reqwest", "rustls", "log", "sentry-log"] } serde = { version = "1.0.164", features = [] } serde_json = { version = "1.0.97", default-features = false, features = ["alloc", "raw_value"] } -serde_prometheus = "0.2.2" +serde_prometheus = "0.2.3" siwe = "0.5.2" strum = { version = "0.25.0", features = ["derive"] } time = "0.3.22"