openethereum/Cargo.toml

46 lines
1.0 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-03-14 00:13:54 +01:00
version = "1.1.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-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"
ctrlc = { git = "https://github.com/tomusdrw/rust-ctrlc.git" }
fdlimit = { path = "util/fdlimit" }
daemonize = "0.2"
num_cpus = "0.2"
number_prefix = "0.2"
2016-03-09 14:11:15 +01:00
rpassword = "0.1"
2016-03-18 09:54:05 +01:00
clippy = { version = "0.0.54", 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" }
ethminer = { path = "miner" }
2016-02-19 16:09:31 +01:00
ethcore-devtools = { path = "devtools" }
ethcore-rpc = { path = "rpc", optional = true }
2016-01-26 13:14:22 +01:00
[features]
default = ["rpc"]
2016-01-26 13:14:22 +01:00
rpc = ["ethcore-rpc"]
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev", "ethminer/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-02-22 00:36:59 +01:00
debug = false
2016-02-29 19:49:29 +01:00
lto = false