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-07-08 23:01:47 +02:00
|
|
|
account-state = { path = "../account-state" }
|
2019-08-13 12:33:34 +02:00
|
|
|
client-traits = { path = "../client-traits" }
|
2019-01-04 14:05:46 +01:00
|
|
|
common-types = { path = "../types" }
|
2020-01-24 14:52:50 +01:00
|
|
|
derive_more = "0.99"
|
2019-10-08 14:18:44 +02:00
|
|
|
ethabi = "9.0.1"
|
|
|
|
ethabi-contract = "9.0.0"
|
|
|
|
ethabi-derive = "9.0.1"
|
2018-04-09 16:14:33 +02:00
|
|
|
ethcore = { path = ".." }
|
2019-08-16 14:45:52 +02:00
|
|
|
ethcore-db = { path = "../db" }
|
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" }
|
2019-10-08 14:18:44 +02:00
|
|
|
ethereum-types = "0.8.0"
|
2018-04-09 16:14:33 +02:00
|
|
|
ethjson = { path = "../../json" }
|
|
|
|
fetch = { path = "../../util/fetch" }
|
|
|
|
futures = "0.1"
|
2019-12-20 12:27:38 +01:00
|
|
|
parity-util-mem = "0.3.0"
|
2019-08-16 14:45:52 +02:00
|
|
|
hash-db = "0.15.0"
|
2019-10-08 14:18:44 +02:00
|
|
|
keccak-hash = "0.4.0"
|
2019-08-16 14:45:52 +02:00
|
|
|
keccak-hasher = { path = "../../util/keccak-hasher" }
|
2019-12-20 12:27:38 +01:00
|
|
|
kvdb = "0.2"
|
2018-08-10 01:04:10 +02:00
|
|
|
log = "0.4"
|
2019-08-13 12:33:34 +02:00
|
|
|
machine = { path = "../machine" }
|
2019-08-16 14:45:52 +02:00
|
|
|
journaldb = { path = "../../util/journaldb" }
|
2019-01-04 14:05:46 +01:00
|
|
|
parity-bytes = "0.1"
|
2019-10-23 13:03:46 +02:00
|
|
|
parity-crypto = { version = "0.4.2", features = ["publickey"] }
|
2019-09-27 23:29:14 +02:00
|
|
|
parking_lot = "0.9"
|
2019-12-20 12:27:38 +01:00
|
|
|
trie-db = "0.18.0"
|
2018-07-02 18:50:05 +02:00
|
|
|
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
|
2019-10-03 15:15:25 +02:00
|
|
|
registrar = { path = "../../util/registrar" }
|
2019-06-03 15:36:21 +02:00
|
|
|
rlp = "0.4.0"
|
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"
|
2019-08-23 15:32:58 +02:00
|
|
|
spec = { path = "../spec" }
|
2019-07-08 23:01:47 +02:00
|
|
|
state-db = { path = "../state-db" }
|
2019-05-14 11:21:22 +02:00
|
|
|
time-utils = { path = "../../util/time-utils" }
|
2018-05-31 13:53:09 +02:00
|
|
|
tiny-keccak = "1.4"
|
2019-07-08 18:17:48 +02:00
|
|
|
trace = { path = "../trace" }
|
2019-09-11 18:44:31 +02:00
|
|
|
transaction-pool = "2.0.1"
|
2019-10-02 10:25:51 +02:00
|
|
|
url = "2"
|
2019-07-16 12:43:47 +02:00
|
|
|
vm = { path = "../vm" }
|
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"] }
|