From c8bd1bfd7d9f77e9bab25f8897edfbea5047f836 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 17 Apr 2024 20:39:53 +0000 Subject: [PATCH] Switch to upstream version of `a2` crate --- Cargo.lock | 3 +-- Cargo.toml | 5 +---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 84a5f0f..c94275a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5,7 +5,7 @@ version = 3 [[package]] name = "a2" version = "0.8.0" -source = "git+https://github.com/gferon/a2/?branch=apns-push-type#a8d689273bd456a54a9cab8043e1caa308ac16ca" +source = "git+https://github.com/WalletConnect/a2/?branch=master#ce701eb57b13708c3d283c7c89b03478ccd9d8f0" dependencies = [ "base64 0.20.0", "erased-serde", @@ -1301,7 +1301,6 @@ dependencies = [ "async-std", "femme", "humantime", - "hyper", "log", "prometheus-client", "serde", diff --git a/Cargo.toml b/Cargo.toml index 1fca882..0ba1358 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "MIT OR Apache-2.0" [dependencies] -a2 = { git = "https://github.com/gferon/a2/", branch = "apns-push-type" } +a2 = { git = "https://github.com/WalletConnect/a2/", branch = "master" } anyhow = "1.0.32" async-std = { version = "1.9", features = ["tokio1", "attributes", "unstable"] } femme = "2.1.0" @@ -18,8 +18,5 @@ sled = "0.34.2" structopt = "0.3.15" tide = "0.16.0" -# Workaround for -hyper = { version = "0.14", features = ["tcp"] } - [dev-dependencies] tempfile = "3"