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

Commit 564739f

Browse files
committed
Use published version 0.4.2 of parity-crypto
1 parent 2406421 commit 564739f

File tree

28 files changed

+60
-60
lines changed

28 files changed

+60
-60
lines changed

Cargo.lock

Lines changed: 32 additions & 32 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
@@ -48,7 +48,7 @@ num_cpus = "1.2"
4848
number_prefix = "0.2"
4949
panic_hook = { path = "util/panic-hook" }
5050
parity-bytes = "0.1"
51-
parity-crypto = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
51+
parity-crypto = { version = "0.4.2", features = ["publickey"] }
5252
parity-daemonize = "0.3"
5353
parity-hash-fetch = { path = "updater/hash-fetch" }
5454
parity-ipfs-api = { path = "ipfs" }

accounts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ edition = "2018"
1111
ethkey = { path = "ethkey" }
1212
ethstore = { path = "ethstore" }
1313
log = "0.4"
14-
parity-crypto = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
14+
parity-crypto = { version = "0.4.2", features = ["publickey"] }
1515
parking_lot = "0.9"
1616
serde = "1.0"
1717
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 = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
12+
parity-crypto = { version = "0.4.2", features = ["publickey"] }
1313
parity-wordlist = "1.3"

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 = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
12+
parity-crypto = { version = "0.4.2", features = ["publickey"] }
1313
parity-wordlist="1.2"
1414
rustc-hex = "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 @@ tiny-keccak = "1.4"
1717
time = "0.1.34"
1818
itertools = "0.5"
1919
parking_lot = "0.9"
20-
parity-crypto = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
20+
parity-crypto = { version = "0.4.2", features = ["publickey"] }
2121
ethereum-types = "0.8.0"
2222
dir = { path = "../../util/dir" }
2323
smallvec = "0.6"

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.9"
1515
ethstore = { path = "../" }
1616
ethkey = { path = "../../ethkey" }
17-
parity-crypto = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
17+
parity-crypto = { version = "0.4.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
@@ -43,7 +43,7 @@ parity-bytes = "0.1"
4343
parking_lot = "0.9"
4444
pod = { path = "pod", optional = true }
4545
trie-db = "0.15.0"
46-
parity-crypto = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"], optional = true }
46+
parity-crypto = { version = "0.4.2", features = ["publickey"], optional = true }
4747
patricia-trie-ethereum = { path = "../util/patricia-trie-ethereum" }
4848
rand = "0.6"
4949
rayon = "1.1"
@@ -75,7 +75,7 @@ ethash = { path = "../ethash" }
7575
ethcore-accounts = { path = "../accounts" }
7676
ethcore-builtin = { path = "./builtin" }
7777
ethjson = { path = "../json", features = ["test-helpers"] }
78-
parity-crypto = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
78+
parity-crypto = { version = "0.4.2", features = ["publickey"] }
7979
fetch = { path = "../util/fetch" }
8080
kvdb-memorydb = "0.1.2"
8181
kvdb-rocksdb = "0.1.5"

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 = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
32+
parity-crypto = { version = "0.4.2", features = ["publickey"] }
3333
rustc-hex = "1.0"
3434
tempdir = "0.3"
3535
kvdb-memorydb = "0.1.2"

ethcore/builtin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ log = "0.4"
1515
num = { version = "0.1", default-features = false, features = ["bigint"] }
1616
parity-bytes = "0.1"
1717
eip-152 = { path = "../../util/EIP-152" }
18-
parity-crypto = { git = "https://github.com/paritytech/parity-common/", rev = "bd91ef6", features = ["publickey"] }
18+
parity-crypto = { version = "0.4.2", features = ["publickey"] }
1919
byteorder = "1.3.2"
2020

2121
[dev-dependencies]

0 commit comments

Comments
 (0)