forked from Kriptikz/ore-hq-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (57 loc) · 1.73 KB
/
Cargo.toml
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
58
59
60
61
[package]
name = "ore-hq-client"
version = "4.1.0"
edition = "2021"
description = "Ore mining pool client."
license = "Apache-2.0"
repository = "https://github.com/Kriptikz/ore-hq-client"
keywords = ["solana", "crypto", "mining", "client", "mining-pool"]
[dependencies]
base64 = "0.22.1"
bincode = "1.3.3"
clap = { version = "4.5.13", features = ["derive"] }
core_affinity = "0.8.1"
ore-api = "2.2.0"
ore-boost-api = "0.2.0"
ore-utils = "2.1.8"
drillx_2 = "1.1.0"
futures-util = "0.3.30"
reqwest = { version = "^0.11.0", features = ["json", "rustls-tls"] }
rpassword = "7.3.1"
solana-sdk = "1.18.21"
tokio = { version = "1.39.2", features = ["full"] }
tokio-tungstenite = { version = "0.23.1", features = ["native-tls"] }
url = "2.5.2"
spl-token = "6.0.0"
rayon = "1.10"
crossbeam = "0.8.0"
rand = "0.8.4"
rand_chacha = "0.3.0"
inquire = "0.7.5"
dirs = "5.0.1"
colored = "2.0"
indicatif = "0.17"
spl-associated-token-account = { version = "2.2", features = ["no-entrypoint"] }
ore-miner-delegation = { version = "0.6.0", features = ["no-entrypoint"] }
tiny-bip39 = "0.8.2"
qrcode = "0.14.1"
rusqlite = { version = "0.32.1", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
semver = "1.0"
# PMC Additional Packages
mimalloc = "0.1.43"
chrono = "0.4.38"
once_cell = "1.19.0"
http = "1.1.0"
[profile.release]
opt-level = 3 # Full optimisations
codegen-units = 1 # Better optimization with fewer codegen units
lto = true # Enable Link Time Optimization (LTO)
debug = false # Disable debug info to reduce binary size
panic = 'abort' # Reduces the binary size further by not including unwinding information
rpath = false
incremental = false
overflow-checks = false
[build]
rustflags = ["-C", "target-cpu=native"]