[package]
edition = "2021"
name = "vanikey"
version = "1.0.0"
authors = ["cubakn <cubakn@yggr.xyz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple command-line vanity npub generator for Nostr"
readme = "README.md"
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/cubakn/vanikey"
[lib]
name = "vanikey"
path = "src/lib.rs"
[[bin]]
name = "vanikey"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.bech32]
version = "0.9.1"
[dependencies.clap]
version = "4.5.27"
features = ["derive"]
[dependencies.hex]
version = "0.4.3"
[dependencies.rand]
version = "0.8.5"
[dependencies.rand_core]
version = "0.6.4"
[dependencies.secp256k1]
version = "0.27.0"
features = ["rand"]