Disabling wallet (#1017)

* Disabling wallet

* Fixing compilation
This commit is contained in:
Tomasz Drwięga 2016-04-28 21:48:13 +02:00 committed by Gav Wood
parent f83a8f3ba1
commit 0ab9775561
3 changed files with 3 additions and 10 deletions

10
Cargo.lock generated
View File

@ -295,6 +295,7 @@ name = "ethcore-ipc-nano"
version = "1.1.0"
dependencies = [
"ethcore-ipc 1.1.0",
"jsonrpc-core 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"nanomsg 0.5.0 (git+https://github.com/ethcore/nanomsg.rs.git)",
]
@ -367,7 +368,6 @@ dependencies = [
"jsonrpc-http-server 5.1.0 (git+https://github.com/debris/jsonrpc-http-server.git)",
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"parity-status 0.2.2 (git+https://github.com/tomusdrw/parity-status.git)",
"parity-wallet 0.1.1 (git+https://github.com/tomusdrw/parity-wallet.git)",
"parity-webapp 0.1.0 (git+https://github.com/tomusdrw/parity-webapp.git)",
"url 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -825,14 +825,6 @@ dependencies = [
"parity-webapp 0.1.0 (git+https://github.com/tomusdrw/parity-webapp.git)",
]
[[package]]
name = "parity-wallet"
version = "0.1.1"
source = "git+https://github.com/tomusdrw/parity-wallet.git#a2148b6b3c4c25f3a70f6fee5bc60a082e0f2efa"
dependencies = [
"parity-webapp 0.1.0 (git+https://github.com/tomusdrw/parity-webapp.git)",
]
[[package]]
name = "parity-webapp"
version = "0.1.0"

View File

@ -22,5 +22,5 @@ parity-wallet = { git = "https://github.com/tomusdrw/parity-wallet.git", optiona
clippy = { version = "0.0.63", optional = true}
[features]
default = ["parity-wallet"]
default = []
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]

View File

@ -18,6 +18,7 @@ use endpoint::Endpoints;
use page::PageEndpoint;
extern crate parity_status;
#[cfg(feature = "parity-wallet")]
extern crate parity_wallet;