openethereum/signer/Cargo.toml

32 lines
984 B
TOML
Raw Normal View History

[package]
description = "Ethcore Trusted Signer"
2016-12-11 19:43:58 +01:00
homepage = "http://parity.io"
license = "GPL-3.0"
name = "ethcore-signer"
2017-01-10 15:41:59 +01:00
version = "1.6.0"
2016-12-11 19:43:58 +01:00
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
[build-dependencies]
rustc_version = "0.1"
[dependencies]
rand = "0.3.14"
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
log = "0.3"
env_logger = "0.3"
parity-dapps-glue = { version = "1.4", optional = true }
2016-08-08 17:03:25 +02:00
ws = { git = "https://github.com/ethcore/ws-rs.git", branch = "mio-upstream-stable" }
2016-05-27 15:46:07 +02:00
ethcore-util = { path = "../util" }
ethcore-io = { path = "../util/io" }
2016-05-27 15:46:07 +02:00
ethcore-rpc = { path = "../rpc" }
2016-09-01 10:16:04 +02:00
ethcore-devtools = { path = "../devtools" }
parity-ui = { path = "../dapps/ui", version = "1.4", optional = true }
2016-05-27 13:03:00 +02:00
2016-11-28 12:20:57 +01:00
clippy = { version = "0.0.103", optional = true}
[features]
dev = ["clippy"]
ui = ["parity-dapps-glue", "parity-ui", "parity-ui/no-precompiled-js"]
ui-precompiled = ["parity-dapps-glue", "parity-ui", "parity-ui/use-precompiled-js"]