2016-05-26 16:41:03 +02:00
|
|
|
[package]
|
|
|
|
description = "Ethcore Trusted Signer"
|
|
|
|
homepage = "http://ethcore.io"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
name = "ethcore-signer"
|
2016-08-09 11:40:57 +02:00
|
|
|
version = "1.4.0"
|
2016-05-26 16:41:03 +02:00
|
|
|
authors = ["Ethcore <admin@ethcore.io>"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "0.1"
|
|
|
|
|
|
|
|
[dependencies]
|
2016-06-07 17:21:19 +02:00
|
|
|
rand = "0.3.14"
|
2016-09-01 12:00:00 +02:00
|
|
|
jsonrpc-core = "3.0"
|
2016-05-26 16:41:03 +02:00
|
|
|
log = "0.3"
|
|
|
|
env_logger = "0.3"
|
2016-10-22 20:07:12 +02:00
|
|
|
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" }
|
2016-08-05 10:32:04 +02:00
|
|
|
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" }
|
2016-10-22 20:07:12 +02:00
|
|
|
parity-ui = { path = "../dapps/ui", version = "1.4", optional = true }
|
2016-05-27 13:03:00 +02:00
|
|
|
|
2016-10-27 08:28:12 +02:00
|
|
|
clippy = { version = "0.0.96", optional = true}
|
2016-05-26 16:41:03 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
dev = ["clippy"]
|
2016-10-22 20:07:12 +02:00
|
|
|
ui = ["parity-dapps-glue", "parity-ui", "parity-ui/no-precompiled-js"]
|
|
|
|
ui-precompiled = ["parity-dapps-glue", "parity-ui", "parity-ui/use-precompiled-js"]
|