Skip to content

Commit fad9980

Browse files
authored
*: Update tokio, lru and prost (#2443)
1 parent d52ab1b commit fad9980

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ async-std = { version = "1.6.2", features = ["attributes"] }
114114
async-trait = "0.1"
115115
env_logger = "0.9.0"
116116
structopt = "0.3.21"
117-
tokio = { version = "1.0.1", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] }
117+
tokio = { version = "1.15", features = ["io-util", "io-std", "macros", "rt", "rt-multi-thread"] }
118118

119119
[workspace]
120120
members = [

protocols/autonat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
1010
categories = ["network-programming", "asynchronous"]
1111

1212
[build-dependencies]
13-
prost-build = "0.6"
13+
prost-build = "0.9"
1414

1515
[dependencies]
1616
async-trait = "0.1"
@@ -22,7 +22,7 @@ libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
2222
libp2p-request-response = { version = "0.15.0", path = "../request-response" }
2323
log = "0.4"
2424
rand = "0.8"
25-
prost = "0.8"
25+
prost = "0.9"
2626

2727
[dev-dependencies]
2828
async-std = { version = "1.10", features = ["attributes"] }

protocols/identify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ futures-timer = "3.0.2"
1616
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
1717
libp2p-swarm = { version = "0.33.0", path = "../../swarm" }
1818
log = "0.4.1"
19-
lru = "0.7"
19+
lru = "0.7.2"
2020
prost = "0.9"
2121
smallvec = "1.6.1"
2222

protocols/mdns/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ void = "1.0.2"
2929
async-std = { version = "1.9.0", features = ["attributes"] }
3030
env_logger = "0.9.0"
3131
libp2p = { path = "../.." }
32-
tokio = { version = "1.2.0", default-features = false, features = ["macros", "rt", "rt-multi-thread", "time"] }
32+
tokio = { version = "1.15", default-features = false, features = ["macros", "rt", "rt-multi-thread", "time"] }

protocols/rendezvous/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async-trait = "0.1"
3131
env_logger = "0.8"
3232
libp2p = { path = "../.." }
3333
rand = "0.8"
34-
tokio = { version = "1", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
34+
tokio = { version = "1.15", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net" ] }
3535

3636
[build-dependencies]
3737
prost-build = "0.9"

transports/uds/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async-std = { version = "1.6.2", optional = true }
1515
libp2p-core = { version = "0.31.0", path = "../../core", default-features = false }
1616
log = "0.4.1"
1717
futures = "0.3.1"
18-
tokio = { version = "1.0.1", default-features = false, features = ["net"], optional = true }
18+
tokio = { version = "1.15", default-features = false, features = ["net"], optional = true }
1919

2020
[target.'cfg(all(unix, not(target_os = "emscripten")))'.dev-dependencies]
2121
tempfile = "3.0"

0 commit comments

Comments
 (0)