Skip to content

Commit 3eb4901

Browse files
committed
Replace base64-compat dependency
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.
1 parent 779f601 commit 3eb4901

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
@@ -14,7 +14,6 @@ exclude = ["./test_data"]
1414
# Please don't forget to add relevant features to docs.rs below
1515
[features]
1616
default = [ "std", "secp-recovery" ]
17-
base64 = [ "base64-compat" ]
1817
unstable = []
1918
rand = ["secp256k1/rand-std"]
2019
use-serde = ["serde", "bitcoin_hashes/serde", "secp256k1/serde"]
@@ -39,7 +38,7 @@ bitcoin_hashes = { version = "0.10.0", default-features = false }
3938
secp256k1 = { version = "0.22.0", default-features = false }
4039
core2 = { version = "0.3.0", optional = true, default-features = false }
4140

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

0 commit comments

Comments
 (0)