22 lines
525 B
TOML
22 lines
525 B
TOML
[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"
|