forked from maciejhirsz/tiny-bip39
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 1017 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "bip39"
version = "0.5.1"
authors = [ "Stephen Oliver <[email protected]>" ]
license = "MIT/Apache-2.0"
homepage = "https://github.com/infincia/bip39-rs/"
repository = "https://github.com/infincia/bip39-rs/"
readme = "README.md"
description = "A Rust implementation of BIP-0039"
documentation = "https://docs.rs/bip39"
keywords = ["bip39", "bitcoin", "mnemonic"]
[lib]
name = "bip39"
path = "src/lib.rs"
[features]
chinese-simplified = []
chinese-traditional = []
# Note: English is the standard for bip39 so always included
french = []
italian = []
japanese = []
korean = []
spanish = []
default = ["chinese-simplified", "chinese-traditional", "french", "italian", "japanese", "korean", "spanish"]
[dependencies]
failure = "0.1.3"
# Note: hashbrown is going to be merged into Rust std
hashbrown = "0.1.7"
sha2 = "0.8.0"
hmac = "0.7.0"
pbkdf2 = { version = "0.3.0", features=["parallel"], default-features = false }
rand = "0.6.1"
once_cell = { version = "0.1.6", features = [ "parking_lot" ] }