2017-04-06 09:41:49 +03:00
|
|
|
[package]
|
|
|
|
name = "grin"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
|
|
|
|
|
|
|
|
[workspace]
|
2017-07-13 20:30:33 +03:00
|
|
|
members = ["api", "chain", "config", "core", "grin", "p2p", "store", "util", "pool", "wallet"]
|
2017-04-25 04:55:01 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2017-05-25 02:08:39 +03:00
|
|
|
grin_api = { path = "./api" }
|
|
|
|
grin_wallet = { path = "./wallet" }
|
2017-07-13 20:30:33 +03:00
|
|
|
grin_config = { path = "./config" }
|
2017-05-25 02:08:39 +03:00
|
|
|
secp256k1zkp = { path = "./secp256k1zkp" }
|
2017-04-25 04:55:01 +03:00
|
|
|
|
2017-04-28 08:07:25 +03:00
|
|
|
clap = "^2.23.3"
|
|
|
|
daemonize = "^0.2.3"
|
2017-04-25 04:55:01 +03:00
|
|
|
env_logger="^0.3.5"
|
|
|
|
log = "^0.3"
|
2017-05-29 06:21:29 +03:00
|
|
|
serde = "~1.0.8"
|
|
|
|
serde_derive = "~1.0.8"
|
|
|
|
serde_json = "~1.0.2"
|
2017-05-25 02:08:39 +03:00
|
|
|
tiny-keccak = "1.1"
|
2017-07-11 20:11:03 +03:00
|
|
|
|
|
|
|
[dependencies.grin_grin]
|
|
|
|
path = "./grin"
|
|
|
|
version = "*"
|
|
|
|
default-features = false
|
|
|
|
#Comment this in to use the cuckoo-miner package
|
|
|
|
#ensure cuckoo-miner is cloned next to the
|
|
|
|
#grin directory
|
|
|
|
#features = ["cuckoo_miner", "use-cuckoo-miner"]
|
|
|
|
|
|
|
|
|