Skip to content

Commit

Permalink
sha2 w/o default features + version bump: 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michalkucharczyk committed Oct 27, 2023
1 parent 7076c6f commit 7f6b18f
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tiny-bip39"
version = "1.0.0"
version = "1.0.1"
authors = [
"Stephen Oliver <[email protected]>",
"Maciej Hirsz <[email protected]>",
Expand All @@ -27,15 +27,22 @@ italian = []
japanese = []
korean = []
spanish = []
default-langs = ["chinese-simplified", "chinese-traditional", "french", "italian", "japanese", "korean", "spanish"]

default = ["default-langs", "rand"]
default-langs = [
"chinese-simplified",
"chinese-traditional",
"french",
"italian",
"japanese",
"korean",
"spanish",
]
default = [ "default-langs", "rand", "sha2/std" ]

[dependencies]
anyhow = "1.0.57"
thiserror = "1.0.31"
rustc-hash = "1.1.0"
sha2 = "0.10.2"
sha2 = { version = "0.10.2", default-features = false }
hmac = "0.12.1"
pbkdf2 = { version = "0.11.0", default-features = false }
rand = { version = "0.8.5", optional = true }
Expand Down

0 comments on commit 7f6b18f

Please sign in to comment.