2023-08-19 03:40:15 +00:00
|
|
|
[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."
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://git.distrust.co/public/keyfork"
|
2023-08-19 03:40:15 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-08 04:04:47 +00:00
|
|
|
hmac = "0.12.1"
|
|
|
|
pbkdf2 = "0.12.2"
|
2023-09-01 04:11:42 +00:00
|
|
|
# Included in rust
|
2023-08-19 03:40:15 +00:00
|
|
|
sha2 = "0.10.7"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
bip39 = "2.0.0"
|
|
|
|
hex = "0.4.3"
|
|
|
|
serde_json = "1.0.105"
|