openethereum/Cargo.toml

62 lines
1.5 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-05-02 15:01:22 +02:00
version = "1.2.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-04-13 18:03:57 +02:00
syntex = "*"
2016-06-01 17:59:21 +02:00
ethcore-ipc-codegen = { path = "ipc/codegen" }
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"
2016-05-06 12:58:37 +02:00
ctrlc = { git = "https://github.com/ethcore/rust-ctrlc.git" }
fdlimit = { path = "util/fdlimit" }
num_cpus = "0.2"
number_prefix = "0.2"
2016-04-17 01:50:04 +02:00
rpassword = "0.2.1"
2016-06-12 11:26:07 +02:00
clippy = { version = "0.0.76", optional = true}
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" }
2016-02-19 16:09:31 +01:00
ethcore-devtools = { path = "devtools" }
ethcore-rpc = { path = "rpc", optional = true }
ethcore-signer = { path = "signer", optional = true }
ethcore-dapps = { path = "dapps", optional = true }
2016-04-10 15:12:20 +02:00
semver = "0.2"
2016-04-13 18:03:57 +02:00
ethcore-ipc-nano = { path = "ipc/nano" }
ethcore-ipc = { path = "ipc/rpc" }
2016-06-01 20:32:16 +02:00
json-ipc-server = { git = "https://github.com/ethcore/json-ipc-server.git" }
ansi_term = "0.7"
2016-03-28 10:25:19 +02:00
[target.'cfg(not(windows))'.dependencies]
daemonize = "0.2"
2016-03-28 10:25:19 +02:00
[dependencies.hyper]
version = "0.8"
default-features = false
2016-01-26 13:14:22 +01:00
[features]
default = ["rpc", "dapps", "ethcore-signer"]
2016-01-26 13:14:22 +01:00
rpc = ["ethcore-rpc"]
dapps = ["ethcore-dapps"]
2016-05-31 20:54:02 +02:00
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev",
"ethcore-dapps/dev", "ethcore-signer/dev"]
travis-beta = ["ethcore/json-tests"]
2016-03-11 11:16:49 +01:00
travis-nightly = ["ethcore/json-tests", "dev"]
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