openethereum/signer/Cargo.toml

30 lines
789 B
TOML
Raw Normal View History

[package]
description = "Ethcore Trusted Signer"
homepage = "http://ethcore.io"
license = "GPL-3.0"
name = "ethcore-signer"
2016-06-25 10:32:05 +02:00
version = "1.3.0"
authors = ["Ethcore <admin@ethcore.io>"]
build = "build.rs"
[build-dependencies]
rustc_version = "0.1"
[dependencies]
rand = "0.3.14"
2016-05-27 17:46:15 +02:00
jsonrpc-core = "2.0"
log = "0.3"
env_logger = "0.3"
2016-06-27 16:10:37 +02:00
ws = { git = "https://github.com/ethcore/ws-rs.git", branch = "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-07-14 19:32:15 +02:00
parity-dapps-signer = { git = "https://github.com/ethcore/parity-ui.git", version = "0.6", optional = true}
2016-05-27 13:03:00 +02:00
clippy = { version = "0.0.80", 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"]