27 lines
887 B
TOML
27 lines
887 B
TOML
[package]
|
|
description = "Parity WebApplications crate"
|
|
name = "ethcore-webapp"
|
|
version = "1.1.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
jsonrpc-core = "2.0"
|
|
jsonrpc-http-server = { git = "https://github.com/tomusdrw/jsonrpc-http-server.git", branch="old-hyper" }
|
|
hyper = { version = "0.8", default-features = false }
|
|
iron = { version = "0.3" }
|
|
ethcore-rpc = { path = "../rpc" }
|
|
ethcore-util = { path = "../util" }
|
|
parity-webapp = { git = "https://github.com/tomusdrw/parity-webapp.git" }
|
|
# List of apps
|
|
parity-status = { git = "https://github.com/tomusdrw/parity-status.git", version = "0.1.5" }
|
|
parity-wallet = { git = "https://github.com/tomusdrw/parity-wallet.git", optional = true }
|
|
clippy = { version = "0.0.61", optional = true}
|
|
|
|
[features]
|
|
default = ["parity-wallet"]
|
|
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]
|