Pre-release v0.2.0

This commit is contained in:
2025-06-10 13:29:49 +03:00
parent 232684509f
commit 74b1cc6e6f
21 changed files with 998 additions and 512 deletions

View File

@@ -4,18 +4,22 @@ version = "0.1.7"
edition = "2024"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
futures = "0.3.31"
bytes = "1.0"
clap = { version = "4.0", features = ["derive"] }
postgres = "0.19"
serde = { version = "1.0", features = ["derive"] }
config = { version = "0.13", features = ["yaml", "json"] }
async-channel = "2.1"
rand = "0.8"
bitcoin = { version = "0.30", features = ["rand"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
secp256k1 = { version = "0.31.0", features = ["rand"] }
hex = "0.4.3"
async-trait = "0.1.88"
tokio = { version = "1", features = ["full"] }
tokio-postgres = "0.7.13"
deadpool-postgres = "0.14.1"
reqwest = { version = "0.11", features = ["blocking", "json"] }
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"