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]
|
2019-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../types" }
|
2019-03-27 14:46:05 +01:00
|
|
|
derive_more = "0.14.0"
|
2018-09-13 11:04:39 +02:00
|
|
|
ethabi = "6.0"
|
|
|
|
ethabi-contract = "6.0"
|
2019-01-04 14:05:46 +01:00
|
|
|
ethabi-derive = "6.0"
|
2018-04-09 16:14:33 +02:00
|
|
|
ethcore = { path = ".." }
|
2019-01-17 16:43:08 +01:00
|
|
|
ethcore-call-contract = { path = "../call-contract" }
|
2018-04-09 16:14:33 +02:00
|
|
|
ethcore-io = { path = "../../util/io" }
|
|
|
|
ethcore-miner = { path = "../../miner" }
|
2018-09-04 20:13:51 +02:00
|
|
|
ethereum-types = "0.4"
|
2018-04-09 16:14:33 +02:00
|
|
|
ethjson = { path = "../../json" }
|
2018-12-28 10:33:49 +01:00
|
|
|
ethkey = { path = "../../accounts/ethkey" }
|
2018-04-09 16:14:33 +02:00
|
|
|
fetch = { path = "../../util/fetch" }
|
|
|
|
futures = "0.1"
|
2018-08-29 14:31:04 +02:00
|
|
|
heapsize = "0.4"
|
2018-09-04 20:13:51 +02:00
|
|
|
keccak-hash = "0.1.2"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2019-01-04 14:05:46 +01:00
|
|
|
parity-bytes = "0.1"
|
2019-02-06 17:53:34 +01:00
|
|
|
parity-crypto = "0.3.0"
|
2018-12-11 17:22:55 +01:00
|
|
|
parking_lot = "0.7"
|
2019-02-20 19:09:34 +01:00
|
|
|
trie-db = "0.11.0"
|
2018-07-02 18:50:05 +02:00
|
|
|
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
|
2018-04-09 16:14:33 +02:00
|
|
|
rand = "0.3"
|
2018-10-09 22:07:25 +02:00
|
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
2018-12-28 10:33:49 +01:00
|
|
|
rlp_derive = { path = "../../util/rlp-derive" }
|
2018-04-09 16:14:33 +02:00
|
|
|
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"
|
2019-09-12 18:43:53 +02:00
|
|
|
transaction-pool = "2.0.1"
|
2019-11-11 21:57:38 +01:00
|
|
|
url = "2"
|
2018-06-04 15:58:44 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-01-08 15:07:20 +01:00
|
|
|
env_logger = "0.5"
|
2018-06-04 15:58:44 +02:00
|
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|