2018-04-09 16:14:33 +02:00
|
|
|
[package]
|
|
|
|
description = "Parity Private Transactions"
|
|
|
|
name = "ethcore-private-tx"
|
|
|
|
version = "1.0.0"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
error-chain = { version = "0.11", default-features = false }
|
|
|
|
ethabi = "5.1"
|
|
|
|
ethabi-contract = "5.0"
|
|
|
|
ethabi-derive = "5.0"
|
|
|
|
ethcore = { path = ".." }
|
|
|
|
ethcore-bytes = { path = "../../util/bytes" }
|
2018-04-10 13:56:56 +02:00
|
|
|
ethcore-crypto = { path = "../crypto" }
|
2018-04-09 16:14:33 +02:00
|
|
|
ethcore-io = { path = "../../util/io" }
|
|
|
|
ethcore-logger = { path = "../../logger" }
|
|
|
|
ethcore-miner = { path = "../../miner" }
|
|
|
|
ethcore-transaction = { path = "../transaction" }
|
|
|
|
ethereum-types = "0.3"
|
|
|
|
ethjson = { path = "../../json" }
|
|
|
|
ethkey = { path = "../../ethkey" }
|
|
|
|
fetch = { path = "../../util/fetch" }
|
|
|
|
futures = "0.1"
|
|
|
|
keccak-hash = { path = "../../util/hash" }
|
|
|
|
log = "0.3"
|
|
|
|
parking_lot = "0.5"
|
|
|
|
patricia-trie = { path = "../../util/patricia_trie" }
|
|
|
|
rand = "0.3"
|
|
|
|
rlp = { path = "../../util/rlp" }
|
|
|
|
rlp_derive = { path = "../../util/rlp_derive" }
|
|
|
|
rustc-hex = "1.0"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2018-05-31 13:53:09 +02:00
|
|
|
tiny-keccak = "1.4"
|
2018-04-10 13:51:29 +02:00
|
|
|
url = "1"
|
2018-06-04 15:58:44 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|