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

25 lines
493 B
TOML
Raw Permalink Normal View History

[package]
name = "keyfork-mnemonic-util"
version = "0.1.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 = ["smex"]
[dependencies]
2023-09-01 04:11:42 +00:00
# Included in rust
sha2 = "0.10.7"
2024-01-10 05:23:47 +00:00
hmac = "0.12.1"
pbkdf2 = "0.12.2"
smex = { version = "0.1.0", path = "../smex", optional = true }
2024-01-10 05:23:47 +00:00
[dev-dependencies]
bip39 = "2.0.0"
hex = "0.4.3"
serde_json = "1.0.105"