2df4532d50
* Dapps server as a middleware. * Dapps RPC - Work in Progress * Merging Dapps and RPC server. * Fast HTTP server configuration. * Bump jsonrpc * Fixing test target * Re-implementing commented-out tests.
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
description = "Parity Dapps crate"
|
|
name = "parity-dapps"
|
|
version = "1.7.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
base32 = "0.3"
|
|
env_logger = "0.4"
|
|
futures = "0.1"
|
|
linked-hash-map = "0.3"
|
|
log = "0.3"
|
|
parity-dapps-glue = "1.7"
|
|
mime = "0.2"
|
|
mime_guess = "1.6.1"
|
|
rand = "0.3"
|
|
rustc-serialize = "0.3"
|
|
serde = "0.9"
|
|
serde_derive = "0.9"
|
|
serde_json = "0.9"
|
|
time = "0.1.35"
|
|
unicase = "1.3"
|
|
url = "1.0"
|
|
zip = { version = "0.1", default-features = false }
|
|
|
|
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" }
|
|
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethcore-util = { path = "../util" }
|
|
fetch = { path = "../util/fetch" }
|
|
parity-hash-fetch = { path = "../hash-fetch" }
|
|
parity-reactor = { path = "../util/reactor" }
|
|
parity-ui = { path = "./ui" }
|
|
|
|
clippy = { version = "0.0.103", optional = true}
|
|
|
|
[features]
|
|
dev = ["clippy", "ethcore-util/dev"]
|
|
|
|
ui = ["parity-ui/no-precompiled-js"]
|
|
ui-precompiled = ["parity-ui/use-precompiled-js"]
|