2016-04-07 10:49:00 +02:00
|
|
|
[package]
|
|
|
|
description = "Parity WebApplications crate"
|
|
|
|
name = "ethcore-webapp"
|
|
|
|
version = "1.1.0"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.3"
|
|
|
|
jsonrpc-core = "2.0"
|
2016-04-14 20:38:48 +02:00
|
|
|
jsonrpc-http-server = { git = "https://github.com/debris/jsonrpc-http-server.git" }
|
|
|
|
hyper = { default-features = false, git = "https://github.com/hyperium/hyper", branch = "mio" }
|
2016-04-12 22:44:53 +02:00
|
|
|
url = "0.5"
|
2016-04-07 10:49:00 +02:00
|
|
|
ethcore-rpc = { path = "../rpc" }
|
|
|
|
ethcore-util = { path = "../util" }
|
2016-04-07 12:10:26 +02:00
|
|
|
parity-webapp = { git = "https://github.com/tomusdrw/parity-webapp.git" }
|
|
|
|
# List of apps
|
2016-04-08 15:25:20 +02:00
|
|
|
parity-status = { git = "https://github.com/tomusdrw/parity-status.git", version = "0.1.5" }
|
2016-04-07 12:10:26 +02:00
|
|
|
parity-wallet = { git = "https://github.com/tomusdrw/parity-wallet.git", optional = true }
|
2016-04-12 13:42:55 +02:00
|
|
|
clippy = { version = "0.0.63", optional = true}
|
2016-04-07 10:49:00 +02:00
|
|
|
|
|
|
|
[features]
|
2016-04-07 12:10:26 +02:00
|
|
|
default = ["parity-wallet"]
|
2016-04-07 10:49:00 +02:00
|
|
|
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]
|