diff --git a/Cargo.lock b/Cargo.lock index a2b5a6c1..4ad4725c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,9 +172,9 @@ dependencies = [ [[package]] name = "argh" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab257697eb9496bf75526f0217b5ed64636a9cfafa78b8365c71bd283fcef93e" +checksum = "301f76fef0d5543f18f605d4f9d0146b4a780c93dd4686f12af2ce2262013969" dependencies = [ "argh_derive", "argh_shared", @@ -182,21 +182,24 @@ dependencies = [ [[package]] name = "argh_derive" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b382dbd3288e053331f03399e1db106c9fb0d8562ad62cb04859ae926f324fa6" +checksum = "1eb588dd891fc388820fdf0ca3bc60b9973a0c35ff0bda09287ad89b6b7e9c21" dependencies = [ "argh_shared", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.28", ] [[package]] name = "argh_shared" -version = "0.1.10" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64cb94155d965e3d37ffbbe7cc5b82c3dd79dd33bd48e536f73d2cfb8d85506f" +checksum = "0e88e0de1f43d15c92df9d6c94d8cb90cb73db205ce416912e128598c4fb02c0" +dependencies = [ + "serde", +] [[package]] name = "arrayvec" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 5d2e5c0e..e67b8a0c 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "nightly-2023-07-19" +channel = "nightly-2023-08-07" diff --git a/web3_proxy/Cargo.toml b/web3_proxy/Cargo.toml index 243c1aca..c72c44c1 100644 --- a/web3_proxy/Cargo.toml +++ b/web3_proxy/Cargo.toml @@ -36,7 +36,7 @@ siwe = { git = "https://github.com/llamanodes/siwe-rs", rev = "013be5204ff1c8577 anyhow = { version = "1.0.72", features = ["backtrace"] } arc-swap = { version = "1.6.0" } -argh = "0.1.10" +argh = "0.1.11" async-stripe = { version = "0.22.2", default-features = false, features = ["billing", "checkout", "connect", "runtime-tokio-hyper-rustls", "webhook-events"] } async-trait = "0.1.72" axum = { version = "0.6.20", features = ["headers", "tracing", "ws"] }