2016-05-26 18:21:15 +02:00
|
|
|
[package]
|
|
|
|
description = "Parity Dapps crate"
|
|
|
|
name = "ethcore-dapps"
|
2017-01-10 15:41:59 +01:00
|
|
|
version = "1.6.0"
|
2016-05-26 18:21:15 +02:00
|
|
|
license = "GPL-3.0"
|
2016-12-11 19:14:42 +01:00
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
2016-05-26 18:21:15 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
2016-12-27 11:15:02 +01:00
|
|
|
rand = "0.3"
|
2016-05-26 18:21:15 +02:00
|
|
|
log = "0.3"
|
2016-10-22 15:21:41 +02:00
|
|
|
env_logger = "0.3"
|
2016-12-22 18:26:39 +01:00
|
|
|
futures = "0.1"
|
2017-01-25 11:03:36 +01:00
|
|
|
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
|
2016-05-26 18:21:15 +02:00
|
|
|
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }
|
2016-07-07 09:42:49 +02:00
|
|
|
unicase = "1.3"
|
2016-05-26 18:21:15 +02:00
|
|
|
url = "1.0"
|
|
|
|
rustc-serialize = "0.3"
|
2017-02-13 16:38:47 +01:00
|
|
|
serde = "0.9"
|
|
|
|
serde_json = "0.9"
|
|
|
|
serde_derive = "0.9"
|
2016-08-30 14:04:52 +02:00
|
|
|
linked-hash-map = "0.3"
|
2016-10-22 20:07:12 +02:00
|
|
|
parity-dapps-glue = "1.4"
|
2017-02-04 09:52:14 +01:00
|
|
|
base32 = "0.3"
|
2016-10-22 15:21:41 +02:00
|
|
|
mime = "0.2"
|
2016-11-20 17:40:28 +01:00
|
|
|
mime_guess = "1.6.1"
|
2016-11-03 12:40:53 +01:00
|
|
|
time = "0.1.35"
|
2016-10-22 20:07:12 +02:00
|
|
|
zip = { version = "0.1", default-features = false }
|
2016-09-01 10:16:04 +02:00
|
|
|
ethcore-devtools = { path = "../devtools" }
|
2016-05-26 18:21:15 +02:00
|
|
|
ethcore-rpc = { path = "../rpc" }
|
|
|
|
ethcore-util = { path = "../util" }
|
2016-09-27 16:27:06 +02:00
|
|
|
fetch = { path = "../util/fetch" }
|
2016-10-17 11:56:42 +02:00
|
|
|
parity-ui = { path = "./ui" }
|
2016-12-11 19:14:42 +01:00
|
|
|
parity-hash-fetch = { path = "../hash-fetch" }
|
2016-12-22 18:26:39 +01:00
|
|
|
parity-reactor = { path = "../util/reactor" }
|
2016-10-17 11:56:42 +02:00
|
|
|
|
2016-11-28 12:20:57 +01:00
|
|
|
clippy = { version = "0.0.103", optional = true}
|
2016-05-26 18:21:15 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]
|
2016-07-14 20:05:57 +02:00
|
|
|
|
2016-10-22 20:07:12 +02:00
|
|
|
ui = ["parity-ui/no-precompiled-js"]
|
|
|
|
ui-precompiled = ["parity-ui/use-precompiled-js"]
|