86f6cea29d
* Hardware-wallet/usb-subscribe-refactor (#7860) * Hardware-wallet fix * More fine-grained initilization of callbacks by vendorID, productID and usb class * Each device manufacturer gets a seperate handle thread each * Replaced "dummy for loop" with a delay to wait for the device to boot-up properly * Haven't been very carefully with checking dependencies cycles etc * Inline comments explaining where shortcuts have been taken * Need to test this on Windows machine and with Ledger (both models) Signed-off-by: niklasad1 <niklasadolfsson1@gmail.com> * Validate product_id of detected ledger devices * closed_device => unlocked_device * address comments * add target in debug * Address feedback * Remove thread joining in HardwareWalletManager * Remove thread handlers in HardwareWalletManager because this makes them unused * fixed broken logs (#7934) * fixed broken logs * bring back old lock order * removed bloom groups from blockchain * revert unrelated changes * simplify blockchain_block_blooms * Bump WS (#7952) * Calculate proper keccak256/sha3 using parity. (#7953) * Increase max download limit to 128MB (#7965) * fetch: increase max download limit to 64MB * parity: increase download size limit for updater service * Detect too large packets in snapshot sync. (#7977) * fix traces, removed bloomchain crate, closes #7228, closes #7167 (#7979) * Remvoe generator.rs * Make block generator easier to use (#7888) * Make block generator easier to use * applied review suggestions * rename BlockMetadata -> BlockOptions * removed redundant uses of blockchain generator and genereator.next().unwrap() calls
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.9.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
ansi_term = "0.9"
|
|
bn = { git = "https://github.com/paritytech/bn" }
|
|
byteorder = "1.0"
|
|
common-types = { path = "types" }
|
|
crossbeam = "0.2.9"
|
|
ethash = { path = "../ethash" }
|
|
ethcore-bloom-journal = { path = "../util/bloom" }
|
|
ethcore-bytes = { path = "../util/bytes" }
|
|
hashdb = { path = "../util/hashdb" }
|
|
memorydb = { path = "../util/memorydb" }
|
|
patricia-trie = { path = "../util/patricia_trie" }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore-logger = { path = "../logger" }
|
|
ethcore-stratum = { path = "../stratum" }
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-bigint = { path = "../util/bigint" }
|
|
memory-cache = { path = "../util/memory_cache" }
|
|
ethjson = { path = "../json" }
|
|
ethkey = { path = "../ethkey" }
|
|
ethstore = { path = "../ethstore" }
|
|
evm = { path = "evm" }
|
|
futures = "0.1"
|
|
hardware-wallet = { path = "../hw" }
|
|
heapsize = "0.4"
|
|
hyper = { git = "https://github.com/paritytech/hyper", default-features = false }
|
|
itertools = "0.5"
|
|
lazy_static = "0.2"
|
|
linked-hash-map = "0.5"
|
|
log = "0.3"
|
|
lru-cache = "0.1"
|
|
native-contracts = { path = "native_contracts" }
|
|
num = "0.1"
|
|
num_cpus = "1.2"
|
|
parity-machine = { path = "../machine" }
|
|
parking_lot = "0.4"
|
|
price-info = { path = "../price-info" }
|
|
rayon = "0.8"
|
|
rand = "0.3"
|
|
rlp = { path = "../util/rlp" }
|
|
rlp_derive = { path = "../util/rlp_derive" }
|
|
kvdb = { path = "../util/kvdb" }
|
|
kvdb-rocksdb = { path = "../util/kvdb-rocksdb" }
|
|
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
|
|
util-error = { path = "../util/error" }
|
|
snappy = { git = "https://github.com/paritytech/rust-snappy" }
|
|
migration = { path = "../util/migration" }
|
|
macros = { path = "../util/macros" }
|
|
rust-crypto = "0.2.34"
|
|
rustc-hex = "1.0"
|
|
stats = { path = "../util/stats" }
|
|
time = "0.1"
|
|
transient-hashmap = "0.4"
|
|
using_queue = { path = "../util/using_queue" }
|
|
table = { path = "../util/table" }
|
|
bloomable = { path = "../util/bloomable" }
|
|
vm = { path = "vm" }
|
|
wasm = { path = "wasm" }
|
|
keccak-hash = { path = "../util/hash" }
|
|
triehash = { path = "../util/triehash" }
|
|
semantic_version = { path = "../util/semantic_version" }
|
|
unexpected = { path = "../util/unexpected" }
|
|
journaldb = { path = "../util/journaldb" }
|
|
|
|
[dev-dependencies]
|
|
native-contracts = { path = "native_contracts", features = ["test_contracts"] }
|
|
|
|
[features]
|
|
jit = ["evm/jit"]
|
|
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 = []
|
|
test-heavy = []
|
|
default = []
|
|
benches = []
|