2016-05-26 18:21:15 +02:00
|
|
|
[package]
|
|
|
|
description = "Parity Dapps crate"
|
2017-04-03 10:27:37 +02:00
|
|
|
name = "parity-dapps"
|
2017-03-07 17:29:27 +01:00
|
|
|
version = "1.7.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]
|
2017-03-22 07:02:14 +01:00
|
|
|
base32 = "0.3"
|
2017-03-28 19:06:08 +02:00
|
|
|
env_logger = "0.4"
|
2016-12-22 18:26:39 +01:00
|
|
|
futures = "0.1"
|
2016-08-30 14:04:52 +02:00
|
|
|
linked-hash-map = "0.3"
|
2017-03-22 07:02:14 +01:00
|
|
|
log = "0.3"
|
2017-03-21 21:26:05 +01:00
|
|
|
parity-dapps-glue = "1.7"
|
2016-10-22 15:21:41 +02:00
|
|
|
mime = "0.2"
|
2016-11-20 17:40:28 +01:00
|
|
|
mime_guess = "1.6.1"
|
2017-03-22 07:02:14 +01:00
|
|
|
rand = "0.3"
|
2017-07-06 11:36:15 +02:00
|
|
|
rustc-hex = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2016-11-03 12:40:53 +01:00
|
|
|
time = "0.1.35"
|
2017-03-22 07:02:14 +01:00
|
|
|
unicase = "1.3"
|
|
|
|
url = "1.0"
|
2016-10-22 20:07:12 +02:00
|
|
|
zip = { version = "0.1", default-features = false }
|
2017-03-22 07:02:14 +01:00
|
|
|
|
|
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" }
|
|
|
|
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.7" }
|
|
|
|
|
2016-09-01 10:16:04 +02:00
|
|
|
ethcore-devtools = { path = "../devtools" }
|
2016-05-26 18:21:15 +02:00
|
|
|
ethcore-util = { path = "../util" }
|
2016-09-27 16:27:06 +02:00
|
|
|
fetch = { path = "../util/fetch" }
|
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" }
|
2017-03-22 07:02:14 +01:00
|
|
|
parity-ui = { path = "./ui" }
|
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]
|
2017-04-03 10:27:37 +02:00
|
|
|
dev = ["clippy", "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"]
|