forked from elichai/kaspa-miner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 846 Bytes
/
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
[package]
name = "kaspa-miner"
version = "0.1.3"
edition = "2021"
license = "MIT/Apache-2.0"
authors = ["Elichai <[email protected]>"]
readme = "README.md"
description = "A fast CPU miner for Kaspa"
categories = ["command-line-utilities"]
keywords = ["blockchain", "cli"]
[dependencies]
tonic = "0.6"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
prost = "0.9"
futures-util = "0.3"
tokio-stream = "0.1"
sha3 = { git = "https://github.com/elichai/hashes", branch = "cSHAKE" }
once_cell = "1"
num_cpus = "1"
rand = "0.8"
blake2b_simd = "1.0.0"
structopt = { version = "0.3", features = ["color" ]}
log = "0.4"
env_logger = "0.9"
[features]
bench = []
[profile.release]
lto = true
codegen-units = 1
[build-dependencies]
tonic-build = { version = "0.6", default-features = false, features = ["prost", "transport"] }