From 7d81e012aec29d90bde9c070cae8b4574c653a76 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Sat, 25 Jun 2022 02:29:07 +0000 Subject: [PATCH] cargo upgrade --- Cargo.lock | 12 ++++++------ redis-cell-client/Cargo.toml | 2 +- web3-proxy/Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b473c957..b53991bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,9 +70,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.57" +version = "1.0.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc" +checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704" dependencies = [ "backtrace", ] @@ -180,9 +180,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.7" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc47084705629d09d15060d70a8dbfce479c842303d05929ce29c74c995916ae" +checksum = "33d590cacd53140ff87cc2e192eb22fc3dc23c5b3f93b0d4f020677f98e8c629" dependencies = [ "async-trait", "axum-core", @@ -214,9 +214,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2efed1c501becea07ce48118786ebcf229531d0d3b28edf224a720020d9e106" +checksum = "cf4d047478b986f14a13edad31a009e2e05cb241f9805d0d75e4cba4e129ad4d" dependencies = [ "async-trait", "bytes", diff --git a/redis-cell-client/Cargo.toml b/redis-cell-client/Cargo.toml index eabfaa73..9ce816c3 100644 --- a/redis-cell-client/Cargo.toml +++ b/redis-cell-client/Cargo.toml @@ -5,5 +5,5 @@ authors = ["Bryan Stitt "] edition = "2018" [dependencies] -anyhow = "1.0.57" +anyhow = "1.0.58" redis = { version = "0.21.5", features = ["aio", "tokio", "tokio-comp"] } diff --git a/web3-proxy/Cargo.toml b/web3-proxy/Cargo.toml index d88650ff..2d8efc88 100644 --- a/web3-proxy/Cargo.toml +++ b/web3-proxy/Cargo.toml @@ -6,10 +6,10 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = { version = "1.0.57", features = ["backtrace"] } +anyhow = { version = "1.0.58", features = ["backtrace"] } arc-swap = "1.5.0" argh = "0.1.7" -axum = { version = "0.5.7", features = ["serde_json", "tokio-tungstenite", "ws"] } +axum = { version = "0.5.9", features = ["serde_json", "tokio-tungstenite", "ws"] } counter = "0.5.5" dashmap = "5.3.4" derive_more = "0.99.17"