seedxor/Cargo.toml

26 lines
709 B
TOML

[package]
name = "seedxor"
version = "1.1.0"
edition = "2021"
authors = ["moparisthebest <admin@moparisthebest.com>", "KaiWitt <kaiwitt@protonmail.com>"]
description = "XOR bip39 mnemonics."
readme = "README.md"
repository = "https://github.com/moparisthebest/seedxor"
license = "MIT"
keywords = ["bitcoin", "seed", "mnemonic", "bip39", "xor"]
categories = ["cryptography::cryptocurrencies"]
publish = true
include = [
"**/*.rs",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
[dependencies]
bip39 = { version = "2.0", default-features = false }
getrandom = { version = "0.2", default-features = false }
permutohedron = { version = "0.2.4", default-features = false }