2016-05-26 18:21:15 +02:00
|
|
|
[package]
|
|
|
|
description = "Parity Dapps crate"
|
|
|
|
name = "ethcore-dapps"
|
2016-08-09 11:40:57 +02:00
|
|
|
version = "1.4.0"
|
2016-05-26 18:21:15 +02:00
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
2016-08-18 12:19:09 +02:00
|
|
|
rand = "0.3.14"
|
2016-05-26 18:21:15 +02:00
|
|
|
log = "0.3"
|
2016-10-22 15:21:41 +02:00
|
|
|
env_logger = "0.3"
|
2016-09-01 12:00:00 +02:00
|
|
|
jsonrpc-core = "3.0"
|
2016-06-01 18:00:40 +02:00
|
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc-http-server.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"
|
2016-09-01 12:00:00 +02:00
|
|
|
serde = "0.8"
|
|
|
|
serde_json = "0.8"
|
|
|
|
ethabi = "0.2.2"
|
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"
|
2016-10-22 15:21:41 +02:00
|
|
|
mime = "0.2"
|
2016-11-03 12:40:53 +01:00
|
|
|
time = "0.1.35"
|
2016-10-22 20:07:12 +02:00
|
|
|
serde_macros = { version = "0.8", optional = true }
|
|
|
|
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-06-03 11:51:11 +02:00
|
|
|
mime_guess = { version = "1.6.1" }
|
2016-10-27 08:28:12 +02:00
|
|
|
clippy = { version = "0.0.96", optional = true}
|
2016-05-26 18:21:15 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2016-09-01 12:00:00 +02:00
|
|
|
serde_codegen = { version = "0.8", optional = true }
|
2016-05-26 18:21:15 +02:00
|
|
|
|
|
|
|
[features]
|
2016-10-19 11:02:21 +02:00
|
|
|
default = ["serde_codegen"]
|
2016-05-26 18:21:15 +02:00
|
|
|
nightly = ["serde_macros"]
|
|
|
|
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"]
|