forked from PoC-Consortium/scavenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 833 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
36
37
38
[package]
name = "scavenger"
version = "1.0.0-beta"
authors = ["PoC Consortium <[email protected]>"]
description = """
scavenger is a cryptominer for the currency burstcoin
"""
build = "build.rs"
repository = "https://github.com/PoC-Consortium/scavenger"
documentation = "https://github.com/PoC-Consortium/scavenger"
keywords = ["burstcoin", "miner", "rust","cryptocurrency"]
readme = "README.md"
[dependencies]
hyper = "0.12"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
serde_yaml = "0.7"
libc = "0.1"
hex = "0.3.1"
tokio = "0.1"
tokio-core = "0.1"
url = "1.7.1"
chan = "0.1.21"
futures = "0.1.22"
rayon = "1.0"
num_cpus = "0.2"
sys-info = "*"
stopwatch = "0.0.7"
cfg-if = "0.1"
filetime = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["fileapi"] }
[build-dependencies]
cc = "1.0"