045f5bb4da
* Adding output stats from plugin, when available * adding grin config * moving pow crate from core/pow to it's own crate * moving POW/mining stuff into pow module, and removing mining dependency from chain * refactored most of mining into pow module...miner.rs still in server * update grin tests * updating genesis block mining to use configured miner, if available * chain tests back into chain, done with pow refactor * use tag of cuckoo-miner for pr
34 lines
793 B
TOML
34 lines
793 B
TOML
[package]
|
|
name = "grin_grin"
|
|
version = "0.1.0"
|
|
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
|
|
workspace = ".."
|
|
|
|
[dependencies]
|
|
grin_api = { path = "../api" }
|
|
grin_chain = { path = "../chain" }
|
|
grin_core = { path = "../core" }
|
|
grin_store = { path = "../store" }
|
|
grin_p2p = { path = "../p2p" }
|
|
grin_pool = { path = "../pool" }
|
|
grin_util = { path = "../util" }
|
|
grin_wallet = { path = "../wallet" }
|
|
grin_pow = { path = "../pow" }
|
|
secp256k1zkp = { path = "../secp256k1zkp" }
|
|
|
|
env_logger="^0.3.5"
|
|
futures = "^0.1.9"
|
|
futures-cpupool = "^0.1.3"
|
|
hyper = { git = "https://github.com/hyperium/hyper" }
|
|
log = "^0.3"
|
|
time = "^0.1"
|
|
serde = "~1.0.8"
|
|
serde_derive = "~1.0.8"
|
|
tokio-core="^0.1.1"
|
|
tokio-timer="^0.1.0"
|
|
rand = "^0.3"
|
|
itertools = "~0.6.0"
|
|
|
|
[dev_dependencies]
|
|
blake2-rfc = "~0.2.17"
|