b47e064f8e
* bump stable to 2.1.10 * RPC: parity_getBlockReceipts (#9527) * Block receipts RPC. * Use lazy evaluation of block receipts (ecrecover). * Optimize transaction_receipt to prevent performance regression. * Fix RPC grumbles. * Add block & transaction receipt tests. * Fix conversion to block id. * Update a few parity-common dependencies (#9663) * Update a few parity-common dependencies * cleanup * cleanup * revert update of ethereum/tests * better reporting of network rlp errors * Use rlp 0.3.0-beta.1 * fix util function get_dummy_blocks * Already a Vec * encode_list returns vec already * Address grumble * No need for betas * Fix double spaces * Fix empty steps (#9939) * Don't send empty step twice or empty step then block. * Perform basic validation of locally sealed blocks. * Don't include empty step twice. * Strict empty steps validation (#10041) * Add two failings tests for strict empty steps. * Implement strict validation of empty steps. * ethcore: enable constantinople on ethereum (#10031) * ethcore: change blockreward to 2e18 for foundation after constantinople * ethcore: delay diff bomb by 2e6 blocks for foundation after constantinople * ethcore: enable eip-{145,1014,1052,1283} for foundation after constantinople * Change test miner max memory to malloc reports. (#10024) * Bump crossbeam. (#10048) * Revert "Bump crossbeam. (#10048)" This reverts commit ed1db0c2d3d3b8e6bfde3124fb03b093a264e241.
44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[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.12", default-features = false }
|
|
ethabi = "5.1.2"
|
|
ethabi-derive = "5.1.3"
|
|
ethabi-contract = "5.1.1"
|
|
ethcore = { path = ".." }
|
|
parity-bytes = "0.1"
|
|
parity-crypto = "0.1"
|
|
ethcore-io = { path = "../../util/io" }
|
|
ethcore-logger = { path = "../../logger" }
|
|
ethcore-miner = { path = "../../miner" }
|
|
ethcore-transaction = { path = "../transaction" }
|
|
ethereum-types = "0.4"
|
|
ethjson = { path = "../../json" }
|
|
ethkey = { path = "../../ethkey" }
|
|
fetch = { path = "../../util/fetch" }
|
|
futures = "0.1"
|
|
heapsize = "0.4"
|
|
keccak-hash = "0.1.2"
|
|
log = "0.4"
|
|
parking_lot = "0.6"
|
|
patricia-trie = "0.3.0"
|
|
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
|
|
rand = "0.3"
|
|
rlp = { version = "0.3.0", features = ["ethereum"] }
|
|
rlp_derive = { path = "../../util/rlp_derive" }
|
|
rustc-hex = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
tiny-keccak = "1.4"
|
|
transaction-pool = "1.13.2"
|
|
url = "1"
|
|
|
|
[dev-dependencies]
|
|
ethcore = { path = "..", features = ["test-helpers"] }
|