From 05748b25084472cf05ddec79b21cf5c57a727820 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 13 Jun 2023 14:46:23 +1000 Subject: [PATCH] Remove unused dev-dependencies The two dependencies `zip` and `base64ct` are not used, remove them. If this was meant as a way to fix the version of these libs we can always pin in CI. --- Cargo.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c19b106..e615198 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,10 +28,6 @@ tokio = { version = "1.20.1", features = ["full"] } electrsd = { version = "0.22.0", features = ["legacy", "esplora_a33e97e1", "bitcoind_22_0"] } electrum-client = "0.12.0" lazy_static = "1.4.0" -# zip versions after 0.6.3 don't work with our MSRV 1.57.0 -zip = "=0.6.3" -# base64ct versions at 1.6.0 and higher have MSRV 1.60.0 -base64ct = "<1.6.0" [features] default = ["blocking", "async", "async-https"]