46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
description = "Parity Dapps crate"
|
|
name = "ethcore-dapps"
|
|
version = "1.7.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
rand = "0.3"
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
futures = "0.1"
|
|
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }
|
|
unicase = "1.3"
|
|
url = "1.0"
|
|
rustc-serialize = "0.3"
|
|
serde = "0.9"
|
|
serde_json = "0.9"
|
|
serde_derive = "0.9"
|
|
linked-hash-map = "0.3"
|
|
parity-dapps-glue = "1.4"
|
|
base32 = "0.3"
|
|
mime = "0.2"
|
|
mime_guess = "1.6.1"
|
|
time = "0.1.35"
|
|
zip = { version = "0.1", default-features = false }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethcore-rpc = { path = "../rpc" }
|
|
ethcore-util = { path = "../util" }
|
|
fetch = { path = "../util/fetch" }
|
|
parity-ui = { path = "./ui" }
|
|
parity-hash-fetch = { path = "../hash-fetch" }
|
|
parity-reactor = { path = "../util/reactor" }
|
|
|
|
clippy = { version = "0.0.103", optional = true}
|
|
|
|
[features]
|
|
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]
|
|
|
|
ui = ["parity-ui/no-precompiled-js"]
|
|
ui-precompiled = ["parity-ui/use-precompiled-js"]
|