diff --git a/Cargo.toml b/Cargo.toml index a322787..c0bcea9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" ] @@ -41,13 +38,12 @@ all-languages = [ [dependencies] bitcoin_hashes = "0.9.4" -rand_core = "0.4.0" +rand_core = "0.6.3" 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 } diff --git a/README.md b/README.md index 57d978a..9ea25b6 100644 --- a/README.md +++ b/README.md @@ -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`.