openethereum/signer/Cargo.toml

31 lines
846 B
TOML
Raw Normal View History

[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"
authors = ["Ethcore <admin@ethcore.io>"]
build = "build.rs"
[build-dependencies]
rustc_version = "0.1"
[dependencies]
rand = "0.3.14"
jsonrpc-core = "3.0"
log = "0.3"
env_logger = "0.3"
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-dapps-signer = { git = "https://github.com/ethcore/parity-ui.git", version = "1.4", optional = true}
2016-05-27 13:03:00 +02:00
clippy = { version = "0.0.90", optional = true}
[features]
dev = ["clippy"]
2016-07-13 11:10:43 +02:00
ui = ["parity-dapps-signer"]
2016-07-14 20:05:57 +02:00
use-precompiled-js = ["parity-dapps-signer/use-precompiled-js"]