-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 846 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 846 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
[package]
name = "Hash_Pool"
authors = ["AreaLayer"]
license = "MIT"
description = "A simple library for Mining pools and developers"
documentation = "https://docs.rs/hashpool"
homepage = "https://www.arealayer.net/projects"
repository = "https://github.com/AreaLayer/HashPool"
version = "1.0.24-beta"
edition = "2024"
[dependencies]
crypto = { version = "0.5.1", features = ["digest"] }
bdk = "= 0.30.2"
bdk_electrum = "0.23.0"
bitcoin = "=0.32.7"
lightning = "=0.1.7"
sha2 = "=0.10.9"
ppv-lite86 = "0.2.20"
tokio = { version = "1.46.0", features = ["full"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tokio-util = "0.7.13"
futures = "0.3.31"
[lib]
name = "mining"
path = "src/lib.rs"
# Explicitly include everything needed in the published package
[[bin]]
name = "hashpoold"
path = "bin/hashpoold.rs"