bip0039 0.13.2

Another Rust implementation of BIP-0039 standard
Documentation
[build-dependencies.anyhow]
version = "1.0"

[build-dependencies.phf_codegen]
version = "0.13"

[dependencies.hmac]
default-features = false
version = "0.12"

[dependencies.pbkdf2]
default-features = false
version = "0.12"

[dependencies.phf]
default-features = false
version = "0.13"

[dependencies.rand]
optional = true
version = "0.9"

[dependencies.sha2]
default-features = false
version = "0.10"

[dependencies.unicode-normalization]
default-features = false
version = "0.1"

[dependencies.zeroize]
default-features = false
features = ["alloc"]
version = "1.8"

[dev-dependencies.const-hex]
version = "1.12"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[features]
all-languages = ["chinese-simplified", "chinese-traditional", "czech", "french", "italian", "japanese", "korean", "portuguese", "spanish"]
chinese-simplified = []
chinese-traditional = []
czech = []
default = ["std", "rand"]
french = []
italian = []
japanese = []
korean = []
portuguese = []
spanish = []
std = ["hmac/std", "pbkdf2/std", "phf/std", "sha2/std", "unicode-normalization/std", "zeroize/std"]

[lib]
name = "bip0039"
path = "src/lib.rs"

[package]
authors = ["koushiro <koushiro.cqx@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["cryptography", "no-std"]
description = "Another Rust implementation of BIP-0039 standard"
documentation = "https://docs.rs/bip0039"
edition = "2024"
homepage = "https://github.com/koushiro/rust-bips"
keywords = ["bip39", "bitcoin", "crypto", "mnemonic"]
license = "Apache-2.0"
name = "bip0039"
readme = "README.md"
repository = "https://github.com/koushiro/rust-bips"
rust-version = "1.85.0"
version = "0.13.2"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "generate"
path = "tests/generate.rs"

[[test]]
name = "vectors"
path = "tests/vectors.rs"