forked from tmpim/kristforge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (44 loc) · 1.09 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
[package]
name = "kristforge"
version = "3.1.6"
description = "Hardware accelerated CPU and GPU Krist miner"
authors = ["Dana Marcuse <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
[dependencies]
serde = { version = "1.0.115", features = [ "derive" ] }
serde_json = "1.0.57"
hex = "0.4.2"
thiserror = "1.0.20"
futures = "0.3.5"
tokio = { version = "0.2.22", features = [ "macros" ] }
tokio-tungstenite = { version = "0.11.0", features = [ "tls" ] }
isahc = { version = "0.9.8", features = [ "static-ssl" ] }
lazy_static = "1.4.0"
structopt = "0.3.16"
url = { version = "2.1.1", features = [ "serde" ] }
indicatif = "0.15.0"
log = "0.4.11"
simplelog = "0.8.0"
dirs = "3.0.1"
rand = "0.7.3"
dynamic_ocl = "0.1.0-alpha.1"
enumset = "1.0.1"
itertools = "0.9.0"
num_cpus = "1.13.0"
crossbeam = "0.7.3"
ring = "0.16.15"
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[target.'cfg(unix)'.dependencies]
libc = "0.2.74"
[profile.release]
lto = true
codegen-units = 1
debug = true
[profile.release.package."*"]
codegen-units = 1
debug = false
[profile.dev.package."*"]
opt-level = 1
codegen-units = 1