keyfork/crates/util/keyfork-mnemonic-util/Cargo.toml

25 lines
586 B
TOML
Raw Normal View History

[package]
name = "keyfork-mnemonic-util"
2024-05-16 04:29:28 +00:00
version = "0.3.0"
2023-09-01 12:24:40 +00:00
description = "Utilities to generate and manage seeds based on BIP-0039 mnemonics."
repository = "https://git.distrust.co/public/keyfork"
edition = "2021"
2023-11-15 04:19:30 +00:00
license = "MIT"
[features]
default = ["bin"]
bin = ["smex"]
[dependencies]
2024-02-23 02:58:49 +00:00
smex = { version = "0.1.0", path = "../smex", optional = true, registry = "distrust" }
keyfork-bug = { version = "0.1.0", path = "../keyfork-bug", registry = "distrust" }
2024-02-23 02:58:49 +00:00
sha2 = "0.10.7"
2024-01-10 05:23:47 +00:00
hmac = "0.12.1"
pbkdf2 = "0.12.2"
[dev-dependencies]
bip39 = "2.0.0"
hex = "0.4.3"
serde_json = "1.0.105"