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

Commit 9afd977

Browse files
committed
Merge remote-tracking branch 'origin/master' into na-bump-rand
2 parents a29264a + 6b57429 commit 9afd977

File tree

43 files changed

+677
-390
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+677
-390
lines changed

.gitlab-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,35 +63,35 @@ cargo-check 0 3:
6363
<<: *docker-cache-status
6464
script:
6565
- time cargo check --target $CARGO_TARGET --locked --no-default-features --verbose --color=always
66-
- sccache --stop-server
66+
- sccache --show-stats
6767

6868
cargo-check 1 3:
6969
stage: test
7070
<<: *docker-cache-status
7171
script:
7272
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --no-default-features --verbose --color=always
73-
- sccache --stop-server
73+
- sccache --show-stats
7474

7575
cargo-check 2 3:
7676
stage: test
7777
<<: *docker-cache-status
7878
script:
7979
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --features "mio" --verbose --color=always
80-
- sccache --stop-server
80+
- sccache --show-stats
8181

8282
cargo-check-evmbin:
8383
stage: test
8484
<<: *docker-cache-status
8585
script:
8686
- time cargo check -p evmbin --target $CARGO_TARGET --locked --verbose --color=always
87-
- sccache -s
87+
- sccache --show-stats
8888

8989
cargo-check-benches:
9090
stage: test
9191
<<: *docker-cache-status
9292
script:
9393
- time cargo check --all --benches --target $CARGO_TARGET --locked --verbose --color=always
94-
- sccache -s
94+
- sccache --show-stats
9595

9696
cargo-audit:
9797
stage: test

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ethstore = { path = "accounts/ethstore" }
3737
fdlimit = "0.1"
3838
futures = "0.1"
3939
journaldb = { path = "util/journaldb" }
40-
jsonrpc-core = "13.2.0"
40+
jsonrpc-core = "14.0.0"
4141
keccak-hash = "0.4.0"
4242
kvdb = "0.1"
4343
kvdb-rocksdb = "0.1.5"

accounts/ethkey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["Parity Technologies <[email protected]>"]
77
[dependencies]
88
edit-distance = "2.0"
99
parity-crypto = "0.4.0"
10-
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1", branch = "master" }
10+
eth-secp256k1 = { git = "https://github.com/paritytech/rust-secp256k1" }
1111
ethereum-types = "0.8.0"
1212
lazy_static = "1.0"
1313
log = "0.4"

cli-signer/rpc-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ serde_json = "1.0"
1515
url = "2.1.0"
1616
matches = "0.1"
1717
parking_lot = "0.9"
18-
jsonrpc-core = "13.2.0"
19-
jsonrpc-ws-server = "13.2.0"
18+
jsonrpc-core = "14.0.0"
19+
jsonrpc-ws-server = "14.0.0"
2020
parity-rpc = { path = "../../rpc" }
2121
keccak-hash = "0.4.0"

ethcore/builtin/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ edition = "2018"
77

88
[dependencies]
99
bn = { git = "https://github.com/paritytech/bn", default-features = false }
10+
common-types = { path = "../types" }
1011
ethereum-types = "0.8.0"
1112
ethjson = { path = "../../json" }
1213
ethkey = { path = "../../accounts/ethkey" }

0 commit comments

Comments
 (0)