26 lines
635 B
TOML
26 lines
635 B
TOML
|
[package]
|
||
|
description = "Ethcore Secret Store"
|
||
|
name = "ethcore-secretstore"
|
||
|
version = "1.0.0"
|
||
|
license = "GPL-3.0"
|
||
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||
|
build = "build.rs"
|
||
|
|
||
|
[build-dependencies]
|
||
|
ethcore-ipc-codegen = { path = "../ipc/codegen" }
|
||
|
|
||
|
[dependencies]
|
||
|
log = "0.3"
|
||
|
parking_lot = "0.3"
|
||
|
hyper = { version = "0.9", default-features = false }
|
||
|
url = "1.0"
|
||
|
ethcore-devtools = { path = "../devtools" }
|
||
|
ethcore-util = { path = "../util" }
|
||
|
ethcore-ipc = { path = "../ipc/rpc" }
|
||
|
ethcore-ipc-nano = { path = "../ipc/nano" }
|
||
|
ethcrypto = { path = "../ethcrypto" }
|
||
|
ethkey = { path = "../ethkey" }
|
||
|
|
||
|
[profile.release]
|
||
|
debug = true
|