openethereum/webapp/Cargo.toml

27 lines
925 B
TOML
Raw Normal View History

2016-04-07 10:49:00 +02:00
[package]
description = "Parity WebApplications crate"
name = "ethcore-webapp"
2016-05-02 15:01:22 +02:00
version = "1.2.0"
2016-04-07 10:49:00 +02:00
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io"]
[lib]
[dependencies]
log = "0.3"
2016-05-06 12:58:37 +02:00
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc-core.git" }
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc-http-server.git" }
hyper = { default-features = false, git = "https://github.com/hyperium/hyper", branch = "mio" }
2016-04-27 22:41:46 +02:00
url = "1.0"
2016-04-07 10:49:00 +02:00
ethcore-rpc = { path = "../rpc" }
ethcore-util = { path = "../util" }
parity-webapp = { git = "https://github.com/ethcore/parity-webapp.git" }
2016-04-07 12:10:26 +02:00
# List of apps
parity-status = { git = "https://github.com/ethcore/parity-status.git", version = "0.3.6" }
parity-wallet = { git = "https://github.com/ethcore/parity-wallet.git", optional = true }
clippy = { version = "0.0.64", optional = true}
2016-04-07 10:49:00 +02:00
[features]
default = []
2016-04-07 10:49:00 +02:00
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]