2016-05-26 18:21:15 +02:00
|
|
|
[package]
|
|
|
|
description = "Parity Dapps crate"
|
|
|
|
name = "ethcore-dapps"
|
2016-06-25 10:32:05 +02:00
|
|
|
version = "1.3.0"
|
2016-05-26 18:21:15 +02:00
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
log = "0.3"
|
2016-06-01 18:00:40 +02:00
|
|
|
jsonrpc-core = "2.0"
|
|
|
|
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"
|
|
|
|
serde = "0.7.0"
|
|
|
|
serde_json = "0.7.0"
|
|
|
|
serde_macros = { version = "0.7.0", optional = true }
|
|
|
|
ethcore-rpc = { path = "../rpc" }
|
|
|
|
ethcore-util = { path = "../util" }
|
|
|
|
parity-dapps = { git = "https://github.com/ethcore/parity-dapps-rs.git", version = "0.3" }
|
|
|
|
# List of apps
|
2016-06-30 18:14:20 +02:00
|
|
|
parity-dapps-status = { git = "https://github.com/ethcore/parity-dapps-status-rs.git", version = "0.5.1" }
|
2016-06-29 17:19:04 +02:00
|
|
|
parity-dapps-builtins = { git = "https://github.com/ethcore/parity-dapps-builtins-rs.git", version = "0.5.2" }
|
2016-06-08 15:57:02 +02:00
|
|
|
parity-dapps-wallet = { git = "https://github.com/ethcore/parity-dapps-wallet-rs.git", version = "0.6.0", optional = true }
|
|
|
|
parity-dapps-dao = { git = "https://github.com/ethcore/parity-dapps-dao-rs.git", version = "0.4.0", optional = true }
|
|
|
|
parity-dapps-makerotc = { git = "https://github.com/ethcore/parity-dapps-makerotc-rs.git", version = "0.3.0", optional = true }
|
2016-06-03 11:51:11 +02:00
|
|
|
mime_guess = { version = "1.6.1" }
|
2016-07-04 11:52:59 +02:00
|
|
|
clippy = { version = "0.0.78", optional = true}
|
2016-05-26 18:21:15 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
serde_codegen = { version = "0.7.0", optional = true }
|
2016-06-01 17:59:21 +02:00
|
|
|
syntex = "*"
|
2016-05-26 18:21:15 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["serde_codegen", "extra-dapps"]
|
2016-06-18 13:08:55 +02:00
|
|
|
extra-dapps = ["parity-dapps-wallet"]
|
2016-05-26 18:21:15 +02:00
|
|
|
nightly = ["serde_macros"]
|
|
|
|
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]
|