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-10-12 23:44:02 +02:00
|
|
|
version = "1.9.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"
|
2016-12-22 18:26:39 +01:00
|
|
|
futures = "0.1"
|
2017-10-05 12:35:01 +02:00
|
|
|
futures-cpupool = "0.1"
|
|
|
|
linked-hash-map = "0.5"
|
2017-03-22 07:02:14 +01:00
|
|
|
log = "0.3"
|
2017-10-17 16:48:38 +02:00
|
|
|
parity-dapps-glue = "1.9"
|
2017-09-02 20:09:13 +02:00
|
|
|
parking_lot = "0.4"
|
2017-10-05 12:35:01 +02:00
|
|
|
mime_guess = "2.0.0-alpha.2"
|
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"
|
2017-10-05 12:35:01 +02:00
|
|
|
unicase = "1.4"
|
2016-10-22 20:07:12 +02:00
|
|
|
zip = { version = "0.1", default-features = false }
|
2017-08-17 16:05:26 +02:00
|
|
|
itertools = "0.5"
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2017-10-05 12:35:01 +02:00
|
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" }
|
|
|
|
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.8" }
|
2017-03-22 07:02:14 +01:00
|
|
|
|
2016-05-26 18:21:15 +02:00
|
|
|
ethcore-util = { path = "../util" }
|
2017-09-04 16:36:49 +02:00
|
|
|
ethcore-bigint = { path = "../util/bigint" }
|
2017-09-06 20:47:45 +02:00
|
|
|
ethcore-bytes = { path = "../util/bytes" }
|
2016-09-27 16:27:06 +02:00
|
|
|
fetch = { path = "../util/fetch" }
|
2017-08-28 14:11:55 +02:00
|
|
|
node-health = { path = "./node-health" }
|
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" }
|
2017-08-31 11:35:41 +02:00
|
|
|
hash = { path = "../util/hash" }
|
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
|
|
|
|
2017-08-28 14:11:55 +02:00
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = "0.4"
|
|
|
|
ethcore-devtools = { path = "../devtools" }
|
|
|
|
|
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"]
|