forked from openethereum/parity-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fetch
parity-common
crates from crates.io (openethereum#9410)
* Fetch `parity-common` crates from crates.io * Add doc tests from `patricia-trie` to `patricia-trie-ethereum` Fix/update a few deps * [ethkey] upgrade ethereum-types * [whisper] update deps * [network] deps * [network-devp2p] deps * [journaldb] deps * [fastmap] deps * [miner] deps and test fixes * [machine] deps * [json] deps * [hw] deps * [ethash] deps * [registrar] deps * Update a few more dependencies with new ethabi-* * [updater] Update deps * deps * [ethcore] Update deps * Use new parity-snappy and parity-rocksdb crates * Updated submodules * Use parity-snappy 0.1 * Use kvdb-rocksdb 0.1.2 * Don't use latest ethereum/tests * Fix merge conflicts errors * Remove superseeded comment * Address grumbles: add newlines, add/remove spaces
- Loading branch information
Showing
91 changed files
with
1,533 additions
and
3,705 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
[dependencies] | ||
crunchy = "0.1.0" | ||
either = "1.0.0" | ||
ethereum-types = "0.3" | ||
keccak-hash = { git = "https://github.com/paritytech/parity-common" } | ||
ethereum-types = "0.4" | ||
keccak-hash = "0.1" | ||
log = "0.4" | ||
memmap = "0.6" | ||
parking_lot = "0.6" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,13 +5,13 @@ authors = ["Parity Technologies <[email protected]>"] | |
|
||
[dependencies] | ||
bit-set = "0.4" | ||
parity-bytes = { git = "https://github.com/paritytech/parity-common" } | ||
ethereum-types = "0.3" | ||
parity-bytes = "0.1" | ||
ethereum-types = "0.4" | ||
heapsize = "0.4" | ||
lazy_static = "1.0" | ||
log = "0.4" | ||
vm = { path = "../vm" } | ||
keccak-hash = { git = "https://github.com/paritytech/parity-common" } | ||
keccak-hash = "0.1" | ||
parking_lot = "0.6" | ||
memory-cache = { path = "../../util/memory_cache" } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,19 +9,19 @@ authors = ["Parity Technologies <[email protected]>"] | |
[dependencies] | ||
log = "0.4" | ||
ethcore = { path = ".."} | ||
parity-bytes = { git = "https://github.com/paritytech/parity-common" } | ||
parity-bytes = "0.1" | ||
ethcore-transaction = { path = "../transaction" } | ||
ethereum-types = "0.3" | ||
memorydb = { git = "https://github.com/paritytech/parity-common" } | ||
patricia-trie = { git = "https://github.com/paritytech/parity-common" } | ||
ethereum-types = "0.4" | ||
memorydb = "0.2.1" | ||
patricia-trie = "0.2.1" | ||
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" } | ||
ethcore-network = { path = "../../util/network" } | ||
ethcore-io = { path = "../../util/io" } | ||
hashdb = { git = "https://github.com/paritytech/parity-common" } | ||
hashdb = "0.2.1" | ||
heapsize = "0.4" | ||
vm = { path = "../vm" } | ||
fastmap = { path = "../../util/fastmap" } | ||
rlp = { git = "https://github.com/paritytech/parity-common" } | ||
rlp = { version = "0.2.4", features = ["ethereum"] } | ||
rlp_derive = { path = "../../util/rlp_derive" } | ||
smallvec = "0.4" | ||
futures = "0.1" | ||
|
@@ -32,16 +32,16 @@ serde = "1.0" | |
serde_derive = "1.0" | ||
parking_lot = "0.6" | ||
stats = { path = "../../util/stats" } | ||
keccak-hash = { git = "https://github.com/paritytech/parity-common" } | ||
keccak-hash = "0.1" | ||
keccak-hasher = { path = "../../util/keccak-hasher" } | ||
triehash-ethereum = { version = "0.2", path = "../../util/triehash-ethereum" } | ||
kvdb = "0.1.0" | ||
kvdb = "0.1" | ||
memory-cache = { path = "../../util/memory_cache" } | ||
error-chain = { version = "0.12", default-features = false } | ||
|
||
[dev-dependencies] | ||
ethcore = { path = "..", features = ["test-helpers"] } | ||
kvdb-memorydb = "0.1.0" | ||
kvdb-memorydb = "0.1" | ||
tempdir = "0.3" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,16 +10,16 @@ authors = ["Parity Technologies <[email protected]>"] | |
ethcore = { path = ".."} | ||
ethcore-network = { path = "../../util/network" } | ||
ethcore-network-devp2p = { path = "../../util/network-devp2p" } | ||
ethereum-types = "0.3" | ||
ethereum-types = "0.4" | ||
log = "0.4" | ||
parking_lot = "0.6" | ||
ethabi = "5.1" | ||
ethabi-derive = "5.0" | ||
ethabi-contract = "5.0" | ||
ethabi = "5.1.2" | ||
ethabi-derive = "5.1.3" | ||
ethabi-contract = "5.1.1" | ||
lru-cache = "0.1" | ||
|
||
[dev-dependencies] | ||
ethcore = { path = "..", features = ["test-helpers"] } | ||
kvdb-memorydb = "0.1.0" | ||
kvdb-memorydb = "0.1" | ||
ethcore-io = { path = "../../util/io" } | ||
tempdir = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,36 +7,36 @@ authors = ["Parity Technologies <[email protected]>"] | |
|
||
[dependencies] | ||
error-chain = { version = "0.12", default-features = false } | ||
ethabi = "5.1" | ||
ethabi-contract = "5.0" | ||
ethabi-derive = "5.0" | ||
ethabi = "5.1.2" | ||
ethabi-derive = "5.1.3" | ||
ethabi-contract = "5.1.1" | ||
ethcore = { path = ".." } | ||
parity-bytes = { git = "https://github.com/paritytech/parity-common" } | ||
parity-crypto = { git = "https://github.com/paritytech/parity-common" } | ||
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.3" | ||
ethereum-types = "0.4" | ||
ethjson = { path = "../../json" } | ||
ethkey = { path = "../../ethkey" } | ||
fetch = { path = "../../util/fetch" } | ||
futures = "0.1" | ||
heapsize = "0.4" | ||
keccak-hash = { git = "https://github.com/paritytech/parity-common" } | ||
keccak-hash = "0.1.2" | ||
log = "0.4" | ||
parking_lot = "0.6" | ||
patricia-trie = { git = "https://github.com/paritytech/parity-common" } | ||
patricia-trie = "0.2.1" | ||
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" } | ||
rand = "0.3" | ||
rlp = { git = "https://github.com/paritytech/parity-common" } | ||
rlp = { version = "0.2.4", 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 = { path = "../../transaction-pool" } | ||
transaction-pool = "1.13.2" | ||
url = "1" | ||
|
||
[dev-dependencies] | ||
|
Submodule wasm-tests
updated
from 0edbf8 to d17bfb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.