seedxor/Cargo.toml

26 lines
709 B
TOML
Raw Permalink Normal View History

2021-08-22 16:04:55 -04:00
[package]
name = "seedxor"
2023-12-07 02:04:21 -05:00
version = "1.1.0"
edition = "2021"
authors = ["moparisthebest <admin@moparisthebest.com>", "KaiWitt <kaiwitt@protonmail.com>"]
2021-08-24 03:34:46 -04:00
description = "XOR bip39 mnemonics."
2021-08-23 13:11:10 -04:00
readme = "README.md"
repository = "https://github.com/moparisthebest/seedxor"
2021-08-23 13:11:10 -04:00
license = "MIT"
keywords = ["bitcoin", "seed", "mnemonic", "bip39", "xor"]
categories = ["cryptography::cryptocurrencies"]
publish = true
2021-08-22 16:04:55 -04:00
include = [
"**/*.rs",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
2021-08-22 16:04:55 -04:00
[dependencies]
2023-12-07 02:04:21 -05:00
bip39 = { version = "2.0", default-features = false }
getrandom = { version = "0.2", default-features = false }
permutohedron = { version = "0.2.4", default-features = false }