forked from PoC-Consortium/engraver
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (40 loc) · 1.03 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
[package]
name = "signum-plotter"
version = "2.6.0"
license = "GPL-3.0"
authors = ["jjos2372, forked from PoC Consortium"]
description = """
signum-plotter - a PoC2 plotter written in Rust
"""
repository = "https://github.com/signum-network/signum-plotter"
documentation = "https://github.com/signum-network/signum-plotter"
keywords = ["signum", "plotter", "rust", "cryptocurrency"]
readme = "README.md"
edition = "2018"
[features]
opencl = ["ocl-core"]
simd=[]
[dependencies]
crossbeam-channel = "0.3.6"
ocl-core = { version = "0.11.1", optional = true }
clap = "2.32.0"
raw-cpuid = "6.1.0"
sys-info = "0.6.0"
cfg-if = "0.1.6"
pbr = "1.0.1"
humanize-rs = "0.1.5"
libc = "0.2.97"
rayon = "1.0.3"
core_affinity = "0.5.9"
stopwatch = "0.0.7"
fs2 = "0.4.3"
page_size = "0.4.1"
aligned_alloc = "0.1.3"
[target.'cfg(linux)'.dependencies]
thread-priority = "0.1.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["std","fileapi","securitybaseapi"] }
[build-dependencies]
cc = "1.0"
[dev-dependencies]
rust-crypto = "0.2.36"