Files
cryptohunter/Cargo.toml
2025-06-11 22:39:45 +03:00

29 lines
747 B
TOML

[package]
name = "cryptohunter"
version = "0.2.1"
edition = "2024"
[dependencies]
crossbeam-channel = "0.5.15"
num_cpus = "1.17.0"
num-bigint = "0.4.6"
num-traits = "0.2.19"
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
config = { version = "0.13", features = ["yaml", "json"] }
rand = "0.8"
once_cell = "1.21.3"
bloom = "0.3.2"
bs58 = { version = "0.5.1", features = ["check"] }
bitcoin = { version = "0.30", features = ["rand"] }
secp256k1 = { version = "0.31.0", features = ["rand"] }
hex = "0.4.3"
postgres = "0.19.10"
r2d2_postgres = "0.18.2"
ctrlc = "3.4"
reqwest = { version = "0.11", features = ["blocking", "json"] }
csv = "1.1"
log = "0.4"
simple_logger = "4.0"
indicatif = "0.17"