From d7928ed14e0765bd20a4fb549dd7791256656c1e Mon Sep 17 00:00:00 2001 From: bodymindarts Date: Thu, 28 Mar 2024 09:18:44 +0100 Subject: [PATCH] chore: bump async-trait + regex --- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d923abb..9720a9ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -180,9 +180,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.77" +version = "0.1.79" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" +checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681" dependencies = [ "proc-macro2", "quote", @@ -2558,9 +2558,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" dependencies = [ "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 5115fc97..2e557357 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,12 +45,12 @@ serde_with = "3.7.0" electrum-client = "0.18.0" reqwest = { version = "0.11.27", default-features = false, features = ["json", "rustls-tls"] } tonic_lnd = { version = "0.5.0", features = ["tracing"] } -async-trait = "0.1" +async-trait = "0.1.79" base64 = "0.22.0" tempfile = "3.10.1" hex = "0.4.3" chacha20poly1305 = "0.10.1" -regex = "1.10.3" +regex = "1.10.4" miniscript = "10.0" reqwest-retry = "0.4.0" reqwest-middleware = "0.2.5"