Skip to content

Commit cf23ef6

Browse files
Seulgi Kimsgkim126
authored andcommitted
Upgrade dependencies
mio: 0.6.14 -> 0.6.16 parking_lot: 0.5.5 -> 0.6.4 lazy_static: 1.1.0 -> 1.2.0 env_logger: 0.4.3 -> 0.6.0 log: 0.4.1 -> 0.4.6 tokio_io: 0.1.6 -> 0.1.10 byteorder: 1.2.3 -> 1.2.7 elastic-array: 0.9.0 -> 0.10.0 typescript: 2.9.2 -> 3.2.2
1 parent be97123 commit cf23ef6

File tree

28 files changed

+271
-264
lines changed

28 files changed

+271
-264
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ codechain-stratum = { path = "stratum" }
3535
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
3636
fdlimit = "0.1"
3737
futures = "0.1"
38-
log = "0.4.1"
38+
log = "0.4.6"
3939
env_logger = "0.5.3"
4040
never = { path = "util/never" }
4141
panic_hook = { path = "util/panic_hook" }
42-
parking_lot = "0.5"
42+
parking_lot = "0.6.0"
4343
primitives = { path = "util/primitives" }
4444
rpassword = "2.0.0"
4545
serde = "1.0"
4646
serde_derive = "1.0"
4747
serde_json = "1.0"
48-
tokio-core = "0.1.6"
48+
tokio-core = "0.1.17"
4949
toml = "0.4"
5050

5151
[build-dependencies]

core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["CodeChain Team <[email protected]>"]
55

66
[dependencies]
7-
byteorder = "1.2.3"
7+
byteorder = "1.2.7"
88
codechain-crypto = { path = "../crypto" }
99
codechain-io = { path = "../util/io" }
1010
codechain-json = { path = "../json" }
@@ -23,14 +23,14 @@ heapsize = "0.4"
2323
hyper = { git = "https://github.com/paritytech/hyper", default-features = false }
2424
journaldb = { path = "../util/journaldb" }
2525
linked-hash-map = "0.5"
26-
log = "0.4.1"
27-
num_cpus = "1.2"
26+
log = "0.4.6"
27+
num_cpus = "1.8"
2828
kvdb = { path = "../util/kvdb" }
2929
kvdb-rocksdb = { path = "../util/kvdb-rocksdb" }
3030
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
3131
memorydb = { path = "../util/memorydb" }
3232
multimap = { path = "../util/multimap" }
33-
parking_lot = "0.5"
33+
parking_lot = "0.6.0"
3434
primitives = { path = "../util/primitives" }
3535
rand = "0.5.3"
3636
rlp = { path = "../util/rlp" }

discovery/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ codechain-crypto = { path = "../crypto" }
88
codechain-key = { path = "../key" }
99
codechain-logger = { path = "../util/logger" }
1010
codechain-network = { path = "../network" }
11-
log = "0.4.1"
12-
parking_lot = "0.5"
11+
log = "0.4.6"
12+
parking_lot = "0.6.0"
1313
primitives = { path = "../util/primitives" }
1414
rand = "0.5.3"
1515
rlp = { path = "../util/rlp" }
1616
time = "0.1"
1717

1818
[dev-dependencies]
19-
lazy_static = "1.1.0"
19+
lazy_static = "1.2"

key/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ authors = ["debris <[email protected]>", "CodeChain Team <codechain@kodeb
77
rand = "0.5.3"
88
rustc-hex = "1.0"
99
rustc-serialize = "0.3"
10-
lazy_static = "1.1.0"
10+
lazy_static = "1.2"
1111
bech32 = "0.2.2"
1212
codechain-crypto = { path = "../crypto" }
1313
never = { path = "../util/never" }
14-
parking_lot = "0.5"
14+
parking_lot = "0.6.0"
1515
primitives = { path = "../util/primitives" }
1616
heapsize = "0.4"
1717
rlp = { path = "../util/rlp" }

keystore/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["CodeChain Team <[email protected]>", "Parity Technologies <[email protected]>"]
55

66
[dependencies]
7-
log = "0.4.1"
7+
log = "0.4.6"
88
libc = "0.2"
99
rand = "0.5.3"
1010
codechain-json = { path = "../json" }
@@ -16,7 +16,7 @@ serde_derive = "1.0"
1616
rustc-hex = "1.0"
1717
time = "0.1.34"
1818
itertools = "0.5"
19-
parking_lot = "0.5"
19+
parking_lot = "0.6.0"
2020
codechain-crypto = { path = "../crypto" }
2121
smallvec = "0.4"
2222
tempdir = "0.3"

network/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ codechain-logger = { path = "../util/logger" }
1414
codechain-timer = { path = "../util/timer" }
1515
codechain-types = { path = "../types" }
1616
primitives = { path = "../util/primitives" }
17-
log = "0.4.1"
18-
mio = "0.6.8"
19-
parking_lot = "0.5"
17+
log = "0.4.6"
18+
mio = "0.6.16"
19+
parking_lot = "0.6.0"
2020
rand = "0.5.3"
2121
rlp = { path = "../util/rlp" }
2222
rlp_derive = { path = "../util/rlp_derive" }

rpc/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ codechain-sync = { path = "../sync" }
1717
codechain-types = { path = "../types" }
1818
kvdb = { path = "../util/kvdb" }
1919
kvdb-rocksdb = { path = "../util/kvdb-rocksdb" }
20-
lazy_static = "1.1.0"
21-
log = "0.4.1"
22-
parking_lot = "0.5"
20+
lazy_static = "1.2"
21+
log = "0.4.6"
22+
parking_lot = "0.6.0"
2323
primitives = { path = "../util/primitives" }
2424
rlp = { path = "../util/rlp" }
2525
serde = "1.0"
2626
serde_json = "1.0"
2727
serde_derive = "1.0"
2828
rustc-hex = "1.0"
2929
rustc-serialize = "0.3"
30-
tokio-core = "0.1.1"
30+
tokio-core = "0.1.17"
3131
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.11" }
3232
jsonrpc-macros = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.11" }
3333
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.11" }

state/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["CodeChain Team <[email protected]>"]
55

66
[dependencies]
7-
byteorder = "1.2.3"
7+
byteorder = "1.2.7"
88
codechain-crypto = { path = "../crypto" }
99
codechain-logger = { path = "../util/logger" }
1010
codechain-merkle = { path = "../util/merkle" }
@@ -15,9 +15,9 @@ hashdb = { path = "../util/hashdb" }
1515
journaldb = { path = "../util/journaldb" }
1616
kvdb = { path = "../util/kvdb" }
1717
kvdb-memorydb = { path = "../util/kvdb-memorydb" }
18-
log = "0.4.1"
18+
log = "0.4.6"
1919
lru-cache = "0.1.1"
20-
parking_lot = "0.5"
20+
parking_lot = "0.6.0"
2121
primitives = { path = "../util/primitives" }
2222
rlp = { path = "../util/rlp" }
2323
rlp_derive = { path = "../util/rlp_derive" }

stratum/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ codechain-json = { path = "../json" }
1212
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.11" }
1313
jsonrpc-macros = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.11" }
1414
jsonrpc-tcp-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.11" }
15-
log = "0.4.1"
16-
parking_lot = "0.5"
15+
log = "0.4.6"
16+
parking_lot = "0.6.0"
1717
primitives = { path = "../util/primitives" }
1818

1919
[dev-dependencies]
20-
env_logger = "0.4"
21-
tokio-core = "0.1"
22-
tokio-io = "0.1"
20+
env_logger = "0.6.0"
21+
tokio-core = "0.1.17"
22+
tokio-io = "0.1.10"

0 commit comments

Comments
 (0)