Skip to content

Commit 5294db2

Browse files
Junha Yang0majecty
Junha Yang0
authored andcommitted
Upgrade parking_lot to 0.11.0
1 parent d7fef3d commit 5294db2

File tree

13 files changed

+122
-66
lines changed

13 files changed

+122
-66
lines changed

Cargo.lock

Lines changed: 110 additions & 54 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
@@ -41,7 +41,7 @@ log = "0.4.6"
4141
env_logger = "0.5.3"
4242
never-type = "0.1.0"
4343
panic_hook = { path = "util/panic_hook" }
44-
parking_lot = "0.6.0"
44+
parking_lot = "0.11.0"
4545
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
4646
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.4" }
4747
rpassword = "2.0.0"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ log = "0.4.6"
2929
lru-cache = "0.1.2"
3030
merkle-trie = { git = "https://github.com/CodeChain-io/rust-merkle-trie.git", version = "0.4" }
3131
num-rational = "0.2.1"
32-
parking_lot = "0.6.0"
32+
parking_lot = "0.11.0"
3333
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
3434
rand = "0.6.1"
3535
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.4" }

discovery/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ codechain-network = { path = "../network" }
1212
codechain-timer = { path = "../util/timer" }
1313
log = "0.4.6"
1414
never-type = "0.1.0"
15-
parking_lot = "0.6.0"
15+
parking_lot = "0.11.0"
1616
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
1717
rand = "0.6.1"
1818
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.4" }

key/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ lazy_static = "1.2"
1212
bech32 = "0.2.2"
1313
codechain-crypto = { git = "https://github.com/CodeChain-io/rust-codechain-crypto.git", version = "0.2" }
1414
never-type = "0.1.0"
15-
parking_lot = "0.6.0"
15+
parking_lot = "0.11.0"
1616
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
1717
rand_xorshift = "0.1.0"
1818
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.4" }

keystore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ serde_json = "1.0"
1616
serde_derive = "1.0"
1717
rustc-hex = "1.0"
1818
time = "0.1.34"
19-
parking_lot = "0.6.0"
19+
parking_lot = "0.11.0"
2020
codechain-crypto = { git = "https://github.com/CodeChain-io/rust-codechain-crypto.git", version = "0.2" }
2121
smallvec = "0.4"
2222
tempdir = "0.3"

network/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ log = "0.4.6"
1818
kvdb = "0.1"
1919
mio = "0.6.16"
2020
never-type = "0.1.0"
21-
parking_lot = "0.6.0"
21+
parking_lot = "0.11.0"
2222
rand = "0.6.1"
2323
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.4" }
2424
rlp_derive = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.2" }

rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ kvdb = "0.1"
2323
kvdb-rocksdb = "0.1"
2424
lazy_static = "1.2"
2525
log = "0.4.6"
26-
parking_lot = "0.6.0"
26+
parking_lot = "0.11.0"
2727
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
2828
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.4" }
2929
serde = "1.0"

state/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ kvdb-memorydb = "0.1"
1616
log = "0.4.6"
1717
lru-cache = "0.1.1"
1818
merkle-trie = { git = "https://github.com/CodeChain-io/rust-merkle-trie.git", version = "0.4" }
19-
parking_lot = "0.6.0"
19+
parking_lot = "0.11.0"
2020
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
2121
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.4" }
2222
rlp_derive = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.2" }

stratum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0
1414
jsonrpc-derive = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.3" }
1515
jsonrpc-tcp-server = { git = "https://github.com/paritytech/jsonrpc.git", tag = "v14.0.3" }
1616
log = "0.4.6"
17-
parking_lot = "0.6.0"
17+
parking_lot = "0.11.0"
1818
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
1919

2020
[dev-dependencies]

util/io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ edition = "2018"
1111
codechain-logger = { path = "../logger" }
1212
mio = "0.6.16"
1313
crossbeam = "0.5.0"
14-
parking_lot = "0.6.0"
14+
parking_lot = "0.11.0"
1515
log = "0.4.6"

util/logger/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ colored = "1.6"
1010
env_logger = "0.6.0"
1111
lazy_static = "1.2"
1212
log = "0.4.6"
13-
parking_lot = "0.6.0"
13+
parking_lot = "0.11.0"
1414
sendgrid = "0.8.1"
1515
serde = "1.0"
1616
serde_derive = "1.0"

util/timer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ edition = "2018"
77
[lib]
88

99
[dependencies]
10-
parking_lot = "0.6.0"
10+
parking_lot = "0.11.0"
1111
log = "0.4.6"
1212
codechain-logger = { path = "../logger" }

0 commit comments

Comments
 (0)