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

Commit f81c576

Browse files
authored
Update parity-crypto dependency (#11791)
1 parent bedbff5 commit f81c576

File tree

28 files changed

+30
-30
lines changed

28 files changed

+30
-30
lines changed

Cargo.lock

Lines changed: 2 additions & 2 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
@@ -52,7 +52,7 @@ num_cpus = "1.2"
5252
number_prefix = "0.2"
5353
panic_hook = { path = "util/panic-hook" }
5454
parity-bytes = "0.1"
55-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
55+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
5656
parity-daemonize = "0.3"
5757
parity-hash-fetch = { path = "updater/hash-fetch" }
5858
parity-local-store = { path = "miner/local-store" }

accounts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2018"
1010
ethkey = { path = "ethkey" }
1111
ethstore = { path = "ethstore" }
1212
log = "0.4"
13-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
13+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
1414
parking_lot = "0.10.0"
1515
serde = "1.0"
1616
serde_derive = "1.0"

accounts/ethkey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ edit-distance = "2.0"
99
log = "0.4"
1010
serde = "1.0"
1111
serde_derive = "1.0"
12-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
12+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
1313
parity-wordlist = "1.3.1"

accounts/ethkey/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ docopt = "1.0"
99
env_logger = "0.5"
1010
ethkey = { path = "../" }
1111
panic_hook = { path = "../../../util/panic-hook" }
12-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
12+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
1313
parity-wordlist= "1.3.1"
1414
rustc-hex = "2.1.0"
1515
serde = "1.0"

accounts/ethstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rustc-hex = "2.1.0"
1717
tiny-keccak = "2.0.2"
1818
time = "0.1.34"
1919
parking_lot = "0.10.0"
20-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
20+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
2121
ethereum-types = "0.9.0"
2222
dir = { path = "../../util/dir" }
2323
smallvec = "1.2.0"

accounts/ethstore/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ serde_derive = "1.0"
1414
parking_lot = "0.10.0"
1515
ethstore = { path = "../" }
1616
ethkey = { path = "../../ethkey" }
17-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
17+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
1818
dir = { path = '../../../util/dir' }
1919
panic_hook = { path = "../../../util/panic-hook" }
2020

ethcore/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ parity-bytes = "0.1"
4242
parking_lot = "0.10.0"
4343
pod = { path = "pod", optional = true }
4444
trie-db = "0.20.0"
45-
parity-crypto = { version = "0.6.1", features = ["publickey"], optional = true }
45+
parity-crypto = { version = "0.6.2", features = ["publickey"], optional = true }
4646
patricia-trie-ethereum = { path = "../util/patricia-trie-ethereum" }
4747
rand = "0.7.3"
4848
rand_xorshift = "0.2.0"
@@ -75,7 +75,7 @@ env_logger = "0.5"
7575
ethcore-accounts = { path = "../accounts" }
7676
ethcore-builtin = { path = "./builtin" }
7777
ethjson = { path = "../json", features = ["test-helpers"] }
78-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
78+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
7979
fetch = { path = "../util/fetch" }
8080
kvdb-memorydb = "0.5.0"
8181
kvdb-rocksdb = "0.7.0"

ethcore/blockchain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ triehash-ethereum = { version = "0.2", path = "../../util/triehash-ethereum" }
2929

3030
[dev-dependencies]
3131
env_logger = "0.5"
32-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
32+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
3333
rustc-hex = "2.1.0"
3434
tempfile = "3.1"
3535
kvdb-memorydb = "0.5.0"

ethcore/builtin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ keccak-hash = "0.5.0"
1616
log = "0.4"
1717
num = "0.2"
1818
parity-bytes = "0.1"
19-
parity-crypto = { version = "0.6.1", features = ["publickey"] }
19+
parity-crypto = { version = "0.6.2", features = ["publickey"] }
2020
eth_pairings = { git = "https://github.com/matter-labs/eip1962.git", default-features = false, features = ["eip_2537"], rev = "ece6cbabc41948db4200e41f0bfdab7ab94c7af8" }
2121

2222
[dev-dependencies]

0 commit comments

Comments
 (0)