Init project

This commit is contained in:
2025-06-04 12:20:49 +03:00
commit 232684509f
13 changed files with 2891 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "cryptohunter"
version = "0.1.7"
edition = "2024"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
clap = { version = "4.0", features = ["derive"] }
postgres = "0.19"
rand = "0.8"
bitcoin = { version = "0.30", features = ["rand"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
tokio = { version = "1", features = ["full"] }
csv = "1.1"
crossbeam-channel = "0.5"
log = "0.4"
simple_logger = "4.0"
lazy_static = "1.4"
indicatif = "0.17"
rayon = "1.10.0"