openethereum/Cargo.toml

82 lines
2.1 KiB
TOML
Raw Normal View History

2016-01-26 13:14:22 +01:00
[package]
description = "Ethcore client."
2016-01-31 11:08:04 +01:00
name = "parity"
2016-08-09 11:40:57 +02:00
version = "1.4.0"
2016-01-26 13:14:22 +01:00
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io>"]
build = "build.rs"
[build-dependencies]
rustc_version = "0.1"
2016-06-01 17:59:21 +02:00
ethcore-ipc-codegen = { path = "ipc/codegen" }
ethcore-ipc-tests = { path = "ipc/tests" }
2016-01-26 13:14:22 +01:00
[dependencies]
log = "0.3"
env_logger = "0.3"
rustc-serialize = "0.3"
2016-02-13 22:58:41 +01:00
docopt = "0.6"
2016-02-23 20:14:37 +01:00
time = "0.1"
num_cpus = "0.2"
number_prefix = "0.2"
2016-04-17 01:50:04 +02:00
rpassword = "0.2.1"
semver = "0.2"
ansi_term = "0.7"
lazy_static = "0.2"
regex = "0.1"
isatty = "0.1"
2016-09-10 11:37:14 +02:00
toml = "0.2"
ctrlc = { git = "https://github.com/ethcore/rust-ctrlc.git" }
fdlimit = { path = "util/fdlimit" }
2016-01-31 11:08:04 +01:00
ethcore = { path = "ethcore" }
ethcore-util = { path = "util" }
2016-01-31 11:08:04 +01:00
ethsync = { path = "sync" }
ethcore-io = { path = "util/io" }
2016-02-19 16:09:31 +01:00
ethcore-devtools = { path = "devtools" }
ethcore-rpc = { path = "rpc" }
ethcore-signer = { path = "signer" }
2016-04-13 18:03:57 +02:00
ethcore-ipc-nano = { path = "ipc/nano" }
ethcore-ipc = { path = "ipc/rpc" }
ethcore-ipc-hypervisor = { path = "ipc/hypervisor" }
ethcore-logger = { path = "logger" }
2016-09-01 14:55:07 +02:00
rlp = { path = "util/rlp" }
2016-06-01 20:32:16 +02:00
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
2016-07-13 11:10:43 +02:00
ethcore-dapps = { path = "dapps", optional = true }
clippy = { version = "0.0.90", optional = true}
ethcore-stratum = { path = "stratum" }
serde = "0.8.0"
serde_json = "0.8.0"
2016-03-28 10:25:19 +02:00
[target.'cfg(windows)'.dependencies]
winapi = "0.2"
[target.'cfg(not(windows))'.dependencies]
daemonize = "0.2"
2016-03-28 10:25:19 +02:00
[dependencies.hyper]
version = "0.9"
2016-03-28 10:25:19 +02:00
default-features = false
2016-01-26 13:14:22 +01:00
[features]
2016-08-17 15:52:57 +02:00
default = ["ui", "use-precompiled-js", "ipc"]
2016-07-14 20:05:57 +02:00
ui = ["dapps", "ethcore-signer/ui"]
use-precompiled-js = ["ethcore-dapps/use-precompiled-js", "ethcore-signer/use-precompiled-js"]
dapps = ["ethcore-dapps"]
ipc = ["ethcore/ipc"]
2016-09-26 18:38:54 +02:00
jit = ["ethcore/jit"]
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev", "ethcore-dapps/dev", "ethcore-signer/dev"]
json-tests = ["ethcore/json-tests"]
stratum = ["ipc"]
2016-09-07 13:59:14 +02:00
ethkey-cli = ["ethcore/ethkey-cli"]
2016-09-07 13:49:11 +02:00
ethstore-cli = ["ethcore/ethstore-cli"]
2016-09-19 01:51:59 +02:00
evm-debug = ["ethcore/evm-debug"]
2016-01-31 11:08:04 +01:00
[[bin]]
path = "parity/main.rs"
name = "parity"
2016-02-21 19:46:29 +01:00
[profile.release]
2016-03-25 14:55:48 +01:00
debug = true
2016-02-29 19:49:29 +01:00
lto = false