12480e7310
* Refactoring to allow for different miner implementations. Added conditional support for compiling and loading the cuckoo-miner plugin project. * Small changes to experimentally integrate with cuckoo-miner and compatibility with latest version of cuckoo-miner. * Turning off inclusion of cuckoo_miner by default * Disabling simulate_parallel_mining test for now
36 lines
904 B
TOML
36 lines
904 B
TOML
[package]
|
|
name = "grin_grin"
|
|
version = "0.1.0"
|
|
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
|
|
workspace = ".."
|
|
|
|
[features]
|
|
# Compliation flag whether to include the experimental cuckoo-miner crate
|
|
use-cuckoo-miner = []
|
|
|
|
[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" }
|
|
secp256k1zkp = { path = "../secp256k1zkp" }
|
|
|
|
#cuckoo_miner = { version = "*", optional=true, path = "../../cuckoo-miner"}
|
|
|
|
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"
|
|
tiny-keccak = "1.1"
|