Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Commit 550f852

Browse files
committed
Merge branch 'master' into refactor/hashdb-generic
* master: Refactor evm Instruction to be a c-like enum (#8914) Fix deadlock in blockchain. (#8977) snap: downgrade rust to revision 1.26.2, ref snapcraft/+bug/1778530 (#8984) Use local parity-dapps-glue instead of crate published at crates.io (#8983) parity: omit redundant last imported block number in light sync informant (#8962) Disable hardware-wallets on platforms that don't support `libusb` (#8464) Bump error-chain and quick_error versions (#8972)
2 parents 627567d + 0bed597 commit 550f852

File tree

36 files changed

+904
-709
lines changed

36 files changed

+904
-709
lines changed

Cargo.lock

Lines changed: 35 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,9 @@ path = "parity/main.rs"
115115
name = "parity"
116116

117117
[profile.dev]
118-
panic = "abort"
119118

120119
[profile.release]
121120
debug = false
122-
lto = false
123-
panic = "abort"
124121

125122
[workspace]
126123
members = [

dapps/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ futures = "0.1"
1313
futures-cpupool = "0.1"
1414
linked-hash-map = "0.5"
1515
log = "0.3"
16-
parity-dapps-glue = "1.9"
1716
parking_lot = "0.5"
1817
mime_guess = "2.0.0-alpha.2"
1918
rand = "0.4"
@@ -32,6 +31,7 @@ ethcore-bytes = { path = "../util/bytes" }
3231
ethereum-types = "0.3"
3332
fetch = { path = "../util/fetch" }
3433
node-health = { path = "./node-health" }
34+
parity-dapps-glue = { path = "./js-glue" }
3535
parity-hash-fetch = { path = "../hash-fetch" }
3636
parity-reactor = { path = "../util/reactor" }
3737
keccak-hash = { path = "../util/hash" }

ethcore/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ memorydb = { path = "../util/memorydb" }
2222
patricia-trie = { path = "../util/patricia_trie" }
2323
patricia-trie-ethereum = { path = "../util/patricia-trie-ethereum" }
2424
ethcore-crypto = { path = "crypto" }
25-
error-chain = { version = "0.11", default-features = false }
25+
error-chain = { version = "0.12", default-features = false }
2626
ethcore-io = { path = "../util/io" }
2727
ethcore-logger = { path = "../logger" }
2828
ethcore-miner = { path = "../miner" }
@@ -37,7 +37,6 @@ ethjson = { path = "../json" }
3737
ethkey = { path = "../ethkey" }
3838
ethstore = { path = "../ethstore" }
3939
evm = { path = "evm" }
40-
hardware-wallet = { path = "../hw" }
4140
heapsize = "0.4"
4241
itertools = "0.5"
4342
lazy_static = "1.0"
@@ -72,6 +71,12 @@ keccak-hasher = { path = "../util/keccak-hasher" }
7271
kvdb-rocksdb = { path = "../util/kvdb-rocksdb" }
7372
tempdir = {version="0.3", optional = true}
7473

74+
[target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "windows", target_os = "android"))'.dependencies]
75+
hardware-wallet = { path = "../hw" }
76+
77+
[target.'cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows", target_os = "android")))'.dependencies]
78+
fake-hardware-wallet = { path = "../util/fake-hardware-wallet" }
79+
7580
[dev-dependencies]
7681
tempdir = "0.3"
7782
trie-standardmap = { path = "../util/trie-standardmap" }

ethcore/crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Parity Technologies <[email protected]>"]
55

66
[dependencies]
77
ethereum-types = "0.3"
8-
quick-error = "1.2"
8+
quick-error = "1.2.2"
99
ring = "0.12"
1010
rust-crypto = "0.2.36"
1111
tiny-keccak = "1.4"

0 commit comments

Comments
 (0)