Skip to content

Commit

Permalink
Merge pull request #602 from LNP-BP/fix/core
Browse files Browse the repository at this point in the history
Fixing hashes core dependency and fuzz feature
  • Loading branch information
TheBlueMatt committed May 7, 2021
2 parents e5f37b8 + 122450b commit 05046b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -14,7 +14,7 @@ readme = "README.md"
[features]
default = [ "secp-recovery" ]
base64 = [ "base64-compat" ]
fuzztarget = ["bitcoin_hashes/fuzztarget"]
fuzztarget = []
unstable = []
rand = ["secp256k1/rand-std"]
use-serde = ["serde", "bitcoin_hashes/serde", "secp256k1/serde"]
Expand All @@ -23,7 +23,7 @@ secp-recovery = ["secp256k1/recovery"]

[dependencies]
bech32 = "0.7.2"
bitcoin_hashes = "0.9.1"
bitcoin_hashes = "0.9.6"
secp256k1 = "0.20.0"

base64-compat = { version = "1.0.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -99,8 +99,8 @@ pub use util::ecdsa::PublicKey;

#[cfg(all(test, feature = "unstable"))]
mod tests {
use hashes::core::fmt::Arguments;
use std::io::{IoSlice, Result, Write};
use std::fmt::Arguments;

#[derive(Default, Clone, Debug, PartialEq, Eq)]
pub struct EmptyWrite;
Expand Down

0 comments on commit 05046b5

Please sign in to comment.