Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ documentation = "https://docs.rs/bip39/"
description = "Library for BIP-39 Bitcoin mnemonic codes"
keywords = [ "crypto", "bitcoin", "bip39", "mnemonic" ]
readme = "README.md"

[lib]
name = "bip39"
path = "src/lib.rs"
edition = "2018"

[features]
default = [ "std" ]
Expand Down Expand Up @@ -41,13 +38,12 @@ all-languages = [

[dependencies]
bitcoin_hashes = "0.9.4"
rand_core = "0.4.0"
rand_core = "0.6.3"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a breaking change, right.. We expose the rand_core API


unicode-normalization = { version = "=0.1.9", optional = true }
rand = { version = "0.6.0", optional = true }
rand = { version = "0.8.5", optional = true }
serde = { version = "1.0", default-features = false, optional = true }
zeroize = {version = "1.5", features = ["zeroize_derive"], optional = true}

[dev-dependencies]
rand = { version = "0.6.0", optional = false }

rand = { version = "0.8.5", optional = false }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ Use the `all-languages` feature to enable all languages.

## MSRV

This crate supports Rust v1.29 and up and works with `no_std`.
This crate supports Rust v1.41.1 and up and works with `no_std`.