e6f75bccfe
* Private transaction message added * Empty line removed * Private transactions logic removed from client into the separate module * Fixed compilation after merge with head * Signed private transaction message added as well * Comments after the review fixed * Private tx execution * Test update * Renamed some methods * Fixed some tests * Reverted submodules * Fixed build * Private transaction message added * Empty line removed * Private transactions logic removed from client into the separate module * Fixed compilation after merge with head * Signed private transaction message added as well * Comments after the review fixed * Encrypted private transaction message and signed reply added * Private tx execution * Test update * Main scenario completed * Merged with the latest head * Private transactions API * Comments after review fixed * Parameters for private transactions added to parity arguments * New files added * New API methods added * Do not process packets from unconfirmed peers * Merge with ptm_ss branch * Encryption and permissioning with key server added * Fixed compilation after merge * Version of Parity protocol incremented in order to support private transactions * Doc strings for constants added * Proper format for doc string added * fixed some encryptor.rs grumbles * Private transactions functionality moved to the separate crate * Refactoring in order to remove late initialisation * Tests fixed after moving to the separate crate * Fetch method removed * Sync test helpers refactored * Interaction with encryptor refactored * Contract address retrieving via substate removed * Sensible gas limit for private transactions implemented * New private contract with nonces added * Parsing of the response from key server fixed * Build fixed after the merge, native contracts removed * Crate renamed * Tests moved to the separate directory * Handling of errors reworked in order to use error chain * Encodable macro added, new constructor replaced with default * Native ethabi usage removed * Couple conversions optimized * Interactions with client reworked * Errors omitting removed * Fix after merge * Fix after the merge * private transactions improvements in progress * private_transactions -> ethcore/private-tx * making private transactions more idiomatic * private-tx encryptor uses shared FetchClient and is more idiomatic * removed redundant tests, moved integration tests to tests/ dir * fixed failing service test * reenable add_notify on private tx provider * removed private_tx tests from sync module * removed commented out code * Use plain password instead of unlocking account manager * remove dead code * Link to the contract changed * Transaction signature chain replay protection module created * Redundant type conversion removed * Contract address returned by private provider * Test fixed * Addressing grumbles in PrivateTransactions (#8249) * Tiny fixes part 1. * A bunch of additional comments and todos. * Fix ethsync tests. * resolved merge conflicts * final private tx pr (#8318) * added cli option that enables private transactions * fixed failing test * fixed failing test * fixed failing test * fixed failing test
86 lines
2.7 KiB
TOML
86 lines
2.7 KiB
TOML
[package]
|
|
description = "Ethcore library"
|
|
homepage = "http://parity.io"
|
|
license = "GPL-3.0"
|
|
name = "ethcore"
|
|
version = "1.11.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
ansi_term = "0.10"
|
|
bloomchain = { path = "../util/bloomchain" }
|
|
bn = { git = "https://github.com/paritytech/bn", default-features = false }
|
|
byteorder = "1.0"
|
|
common-types = { path = "types" }
|
|
crossbeam = "0.3"
|
|
ethash = { path = "../ethash" }
|
|
ethcore-bloom-journal = { path = "../util/bloom" }
|
|
ethcore-bytes = { path = "../util/bytes" }
|
|
fetch = { path = "../util/fetch" }
|
|
hashdb = { path = "../util/hashdb" }
|
|
memorydb = { path = "../util/memorydb" }
|
|
patricia-trie = { path = "../util/patricia_trie" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-logger = { path = "../logger" }
|
|
ethcore-miner = { path = "../miner" }
|
|
ethcore-stratum = { path = "../stratum" }
|
|
ethcore-transaction = { path = "./transaction" }
|
|
ethereum-types = "0.3"
|
|
memory-cache = { path = "../util/memory_cache" }
|
|
ethabi = "5.1"
|
|
ethabi-derive = "5.0"
|
|
ethabi-contract = "5.0"
|
|
ethjson = { path = "../json" }
|
|
ethkey = { path = "../ethkey" }
|
|
ethstore = { path = "../ethstore" }
|
|
evm = { path = "evm" }
|
|
futures-cpupool = "0.1"
|
|
hardware-wallet = { path = "../hw" }
|
|
heapsize = "0.4"
|
|
itertools = "0.5"
|
|
lazy_static = "1.0"
|
|
log = "0.3"
|
|
lru-cache = "0.1"
|
|
num = { version = "0.1", default-features = false, features = ["bigint"] }
|
|
num_cpus = "1.2"
|
|
parity-machine = { path = "../machine" }
|
|
parking_lot = "0.5"
|
|
price-info = { path = "../price-info" }
|
|
rayon = "1.0"
|
|
rand = "0.4"
|
|
rlp = { path = "../util/rlp" }
|
|
rlp_compress = { path = "../util/rlp_compress" }
|
|
rlp_derive = { path = "../util/rlp_derive" }
|
|
kvdb = { path = "../util/kvdb" }
|
|
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
|
|
kvdb-rocksdb = { path = "../util/kvdb-rocksdb" }
|
|
util-error = { path = "../util/error" }
|
|
snappy = { git = "https://github.com/paritytech/rust-snappy" }
|
|
stop-guard = { path = "../util/stop-guard" }
|
|
macros = { path = "../util/macros" }
|
|
rust-crypto = "0.2.34"
|
|
rustc-hex = "1.0"
|
|
stats = { path = "../util/stats" }
|
|
trace-time = { path = "../util/trace-time" }
|
|
using_queue = { path = "../util/using_queue" }
|
|
table = { path = "../util/table" }
|
|
vm = { path = "vm" }
|
|
wasm = { path = "wasm" }
|
|
keccak-hash = { path = "../util/hash" }
|
|
triehash = { path = "../util/triehash" }
|
|
unexpected = { path = "../util/unexpected" }
|
|
journaldb = { path = "../util/journaldb" }
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3"
|
|
trie-standardmap = { path = "../util/trie-standardmap" }
|
|
|
|
[features]
|
|
evm-debug = ["slow-blocks"]
|
|
evm-debug-tests = ["evm-debug", "evm/evm-debug-tests"]
|
|
slow-blocks = [] # Use SLOW_TX_DURATION="50" (compile time!) to track transactions over 50ms
|
|
json-tests = ["ethcore-transaction/json-tests"]
|
|
test-heavy = []
|
|
default = []
|
|
benches = []
|