openethereum/Cargo.toml

61 lines
1.4 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-04-13 18:03:57 +02:00
syntex = "*"
serde_codegen = "0.7.0"
"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"
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-04-12 13:42:55 +02:00
clippy = { version = "0.0.63", 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-04-07 10:49:00 +02:00
ethcore-webapp = { path = "webapp", 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" }
bincode = "*"
serde = "0.7.0"
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]
2016-04-08 11:18:46 +02:00
default = ["rpc", "webapp"]
2016-01-26 13:14:22 +01:00
rpc = ["ethcore-rpc"]
2016-04-07 10:49:00 +02:00
webapp = ["ethcore-webapp"]
dev = ["clippy", "ethcore/dev", "ethcore-util/dev", "ethsync/dev", "ethcore-rpc/dev", "ethminer/dev",
"ethcore-webapp/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