[package]
edition = "2021"
rust-version = "1.92"
name = "vgen"
version = "0.3.0"
authors = ["oritwoen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bitcoin vanity address generator with regex pattern matching and GPU acceleration"
readme = "README.md"
keywords = [
"bitcoin",
"vanity",
"address",
"gpu",
"secp256k1",
]
categories = [
"cryptography",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/oritwoen/vgen"
[lib]
name = "vgen"
path = "src/lib.rs"
[[bin]]
name = "vgen"
path = "src/main.rs"
[[bench]]
name = "core_bench"
path = "benches/core_bench.rs"
harness = false
[[bench]]
name = "gpu_bench"
path = "benches/gpu_bench.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.bitcoin]
version = "0.32"
features = [
"rand",
"secp-recovery",
]
[dependencies.boha]
version = "0.11"
[dependencies.bytemuck]
version = "1.19"
features = ["derive"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.ctrlc]
version = "3.4"
[dependencies.env_logger]
version = "0.11"
[dependencies.hex]
version = "0.4"
[dependencies.indicatif]
version = "0.17"
[dependencies.num-bigint]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.pollster]
version = "0.4"
[dependencies.rand]
version = "0.8"
features = ["small_rng"]
[dependencies.ratatui]
version = "0.29"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha3]
version = "0.10"
[dependencies.tokio]
version = "1.42"
features = [
"rt",
"sync",
]
[dependencies.wgpu]
version = "28"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.sha2]
version = "0.10"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
fn_params_excessive_bools = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
similar_names = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unreadable_literal = "allow"
use_self = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true