Files
pezkuwi-sdk/bizinikiwi/utils/bizinikiwi-bip39/Cargo.toml
T
pezkuwichain 479010094e fix(ci): resolve all quick-checks failures
- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
2026-01-04 17:22:12 +03:00

33 lines
735 B
TOML

[package]
name = "bizinikiwi-bip39"
version = "0.4.7"
license = "Apache-2.0"
description = "Converting BIP39 entropy to valid Bizinikiwi (sr25519) SecretKeys"
documentation.workspace = true
authors.workspace = true
edition.workspace = true
repository.workspace = true
homepage = { workspace = true }
[dependencies]
hmac = { workspace = true }
pbkdf2 = { workspace = true }
schnorrkel = { workspace = true }
sha2 = { workspace = true }
zeroize = { workspace = true }
[dev-dependencies]
bip39 = { workspace = true, default-features = true }
rustc-hex = { workspace = true, default-features = true }
[features]
default = [ "std" ]
std = [
"hmac/std",
"pbkdf2/std",
"schnorrkel/std",
"sha2/std",
"zeroize/alloc",
"zeroize/std",
]