Skip to content

Commit d1c9264

Browse files
author
ChallengeDev210
committed
Merge rust-bitcoin/rust-bitcoin#993: Replace base64-compat dependency
38c41e4 Replace base64-compat dependency (Tobin C. Harding) Pull request description: Now that we have MSRV 1.41.1 we can use the more modern `base64` instead of the compat crate. Requires no changes other than changing the dependency. ACKs for top commit: elichai: ACK 38c41e4 apoelstra: ACK 38c41e4 sanket1729: ACK 38c41e4 Tree-SHA512: 3b53f7c52c9f8346fe4a958b8a8ffa5312891cbb4ce9f5e413bcad596f416ad2f5d6bbbde8857795544de06eaaa2450e88dde273e3177da918baed264a38d1ec
2 parents bdc4a66 + 3eb4901 commit d1c9264

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ edition = "2018"
1515
# Please don't forget to add relevant features to docs.rs below
1616
[features]
1717
default = [ "std", "secp-recovery" ]
18-
base64 = [ "base64-compat" ]
1918
unstable = []
2019
rand = ["secp256k1/rand-std"]
2120
use-serde = ["serde", "bitcoin_hashes/serde", "secp256k1/serde"]
@@ -40,7 +39,7 @@ bitcoin_hashes = { version = "0.10.0", default-features = false }
4039
secp256k1 = { version = "0.22.0", default-features = false }
4140
core2 = { version = "0.3.0", optional = true, default-features = false }
4241

43-
base64-compat = { version = "1.0.0", optional = true }
42+
base64 = { version = "0.13.0", optional = true }
4443
bitcoinconsensus = { version = "0.19.0-3", optional = true }
4544
serde = { version = "1", default-features = false, features = [ "derive", "alloc" ], optional = true }
4645
hashbrown = { version = "0.8", optional = true }

0 commit comments

Comments
 (0)