25 lines
525 B
TOML
25 lines
525 B
TOML
[package]
|
|
name = "keyfork-mnemonic"
|
|
version = "0.4.0"
|
|
description = "Utilities to generate and manage seeds based on BIP-0039 mnemonics."
|
|
repository = "https://git.distrust.co/public/keyfork"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[features]
|
|
default = ["bin"]
|
|
bin = ["smex"]
|
|
|
|
[dependencies]
|
|
smex = { workspace = true, optional = true }
|
|
keyfork-bug = { workspace = true }
|
|
|
|
sha2 = { workspace = true }
|
|
hmac = { workspace = true }
|
|
pbkdf2 = "0.12.2"
|
|
|
|
[dev-dependencies]
|
|
bip39 = "2.0.0"
|
|
hex = "0.4.3"
|
|
serde_json = { workspace = true }
|