-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (45 loc) · 979 Bytes
/
Cargo.toml
File metadata and controls
57 lines (45 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "stratum-v2-jdc"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
[dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
# Stratum V2 Reference Implementation crates
# Using compatible versions from the same release
noise_sv2 = "1.1"
# Bitcoin Core RPC
bitcoincore-rpc = "0.18"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Terminal UI
ratatui = "0.25"
crossterm = "0.27"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Configuration
config = "0.13"
toml = "0.8"
# Utils
bytes = "1.5"
futures = "0.3"
async-channel = "2.1"
chrono = "0.4"
# Cryptographic utilities for SV2
sha2 = "0.10"
rand = "0.8"
[dev-dependencies]
tempfile = "3.8"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true