From 4f6e75e10910d597aa5f92d5c35abae227951538 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Mon, 9 Oct 2023 09:46:43 -0700 Subject: [PATCH] cargo upgrade and update --- Cargo.lock | 39 ++++++++++++-------------------- deduped_broadcast/Cargo.toml | 2 +- deferred-rate-limiter/Cargo.toml | 2 +- latency/Cargo.toml | 4 ++-- migration/Cargo.toml | 2 +- rate-counter/Cargo.toml | 2 +- redis-rate-limiter/Cargo.toml | 2 +- web3_proxy/Cargo.toml | 6 ++--- web3_proxy_cli/Cargo.toml | 4 ++-- 9 files changed, 26 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8133989a..68f644a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,9 +63,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] @@ -1564,25 +1564,14 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" [[package]] name = "errno" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "add4f07d43996f76ef320709726a556a9d4f965d9410d8d0271132d2f8293480" +checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" dependencies = [ - "errno-dragonfly", "libc", "windows-sys", ] -[[package]] -name = "errno-dragonfly" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" -dependencies = [ - "cc", - "libc", -] - [[package]] name = "error-chain" version = "0.12.4" @@ -3024,9 +3013,9 @@ dependencies = [ [[package]] name = "linux-raw-sys" -version = "0.4.8" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db" +checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" [[package]] name = "listenfd" @@ -3989,9 +3978,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.68" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b1106fec09662ec6dd98ccac0f81cef56984d0b49f75c92d8cbad76e20c005c" +checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" dependencies = [ "unicode-ident", ] @@ -4551,9 +4540,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.17" +version = "0.38.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f25469e9ae0f3d0047ca8b93fc56843f38e6774f0914a107ff8b41be8be8e0b7" +checksum = "5a74ee2d7c2581cd139b42447d7d9389b889bdaad3a73f1ebb16f2a3237bb19c" dependencies = [ "bitflags 2.4.0", "errno", @@ -5888,9 +5877,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.32.0" +version = "1.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" +checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" dependencies = [ "backtrace", "bytes", @@ -6590,7 +6579,7 @@ dependencies = [ [[package]] name = "web3_proxy" -version = "1.43.22" +version = "1.43.23" dependencies = [ "anyhow", "arc-swap", @@ -6672,7 +6661,7 @@ dependencies = [ [[package]] name = "web3_proxy_cli" -version = "1.43.22" +version = "1.43.23" dependencies = [ "env_logger", "parking_lot", diff --git a/deduped_broadcast/Cargo.toml b/deduped_broadcast/Cargo.toml index e6f10c70..5dc4039a 100644 --- a/deduped_broadcast/Cargo.toml +++ b/deduped_broadcast/Cargo.toml @@ -9,4 +9,4 @@ edition = "2021" tracing = "0.1" moka = { version = "0.12.1", features = ["future"] } serde = "1" -tokio = { version = "1.32.0", features = ["full"] } +tokio = { version = "1.33.0", features = ["full"] } diff --git a/deferred-rate-limiter/Cargo.toml b/deferred-rate-limiter/Cargo.toml index d4b5b4f2..bd713624 100644 --- a/deferred-rate-limiter/Cargo.toml +++ b/deferred-rate-limiter/Cargo.toml @@ -11,5 +11,5 @@ anyhow = "1.0.75" hashbrown = "0.14.1" log = "0.4.20" moka = { version = "0.12.1", features = ["future"] } -tokio = "1.32.0" +tokio = "1.33.0" tracing = "0.1.37" diff --git a/latency/Cargo.toml b/latency/Cargo.toml index 14a00c0f..267595d6 100644 --- a/latency/Cargo.toml +++ b/latency/Cargo.toml @@ -9,9 +9,9 @@ edition = "2021" log = "0.4.20" portable-atomic = { version = "1.4.3", features = ["float"] } serde = { version = "1.0.188", features = [] } -tokio = { version = "1.32.0", features = ["full"] } +tokio = { version = "1.33.0", features = ["full"] } tracing = "0.1.37" watermill = "0.1.1" [dev-dependencies] -tokio = { version = "1.32.0", features = ["full", "test-util"] } +tokio = { version = "1.33.0", features = ["full", "test-util"] } diff --git a/migration/Cargo.toml b/migration/Cargo.toml index fd51a99b..2802adbd 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -9,7 +9,7 @@ name = "migration" path = "src/lib.rs" [dependencies] -tokio = { version = "1.32.0", features = ["full", "tracing"] } +tokio = { version = "1.33.0", features = ["full", "tracing"] } chrono = "0.4.31" sea-orm = "0.12.3" diff --git a/rate-counter/Cargo.toml b/rate-counter/Cargo.toml index f5a08e58..aeb1bf18 100644 --- a/rate-counter/Cargo.toml +++ b/rate-counter/Cargo.toml @@ -5,4 +5,4 @@ authors = ["Bryan Stitt "] edition = "2021" [dependencies] -tokio = { version = "1.32.0", features = ["time"] } +tokio = { version = "1.33.0", features = ["time"] } diff --git a/redis-rate-limiter/Cargo.toml b/redis-rate-limiter/Cargo.toml index f948ce98..2d60536c 100644 --- a/redis-rate-limiter/Cargo.toml +++ b/redis-rate-limiter/Cargo.toml @@ -8,4 +8,4 @@ edition = "2021" anyhow = "1.0.75" chrono = "0.4.31" deadpool-redis = { version = "0.13.0", features = ["rt_tokio_1", "serde"] } -tokio = "1.32.0" +tokio = "1.33.0" diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index 08ba8e2c..6776fcff 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "web3_proxy" -version = "1.43.22" +version = "1.43.23" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -90,7 +90,7 @@ serde_json = { version = "1.0.107", default-features = false, features = ["raw_v serde_prometheus = "0.2.4" strum = { version = "0.25.0", features = ["derive"] } time = { version = "0.3" } -tokio = { version = "1.32.0", features = ["full", "tracing"] } +tokio = { version = "1.33.0", features = ["full", "tracing"] } tokio-console = { version = "0.1.10", optional = true } tokio-stream = { version = "0.1.14", features = ["sync"] } toml = "0.8.2" @@ -109,6 +109,6 @@ test-log = { version = "0.2.12", default-features = false, features = ["trace"] [dev-dependencies] env_logger = { version ="0.10", default-features = true, features = ["auto-color"] } -tokio = { version = "1.32.0", default-features = false, features = ["full", "test-util"] } +tokio = { version = "1.33.0", default-features = false, features = ["full", "test-util"] } tracing = {version = "0.1", default-features = false} tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]} diff --git a/web3_proxy_cli/Cargo.toml b/web3_proxy_cli/Cargo.toml index e46efae5..db4bf9e7 100644 --- a/web3_proxy_cli/Cargo.toml +++ b/web3_proxy_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "web3_proxy_cli" -version = "1.43.22" +version = "1.43.23" edition = "2021" default-run = "web3_proxy_cli" @@ -29,6 +29,6 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] } [dev-dependencies] env_logger = { version ="0.10", default-features = false, features = ["auto-color"] } test-log = { version ="0.2.12", default-features = false, features = ["trace"] } -tokio = { version = "1.32.0", default-features = false, features = ["full", "test-util"] } +tokio = { version = "1.33.0", default-features = false, features = ["full", "test-util"] } tracing = {version = "0.1", default-features = false } tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"] }