Upgrade Tokio to 1.8.1

This contains a fix for a vulnerability reported as RUSTSEC-2021-0072.
This commit is contained in:
Benjamin Bouvier
2021-07-08 12:13:30 +02:00
parent 89ed663058
commit b0ce0c8f5d
4 changed files with 7 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ os_pipe = "0.9"
anyhow = "1.0.19"
wat = "1.0.37"
cap-std = "0.13"
tokio = { version = "1.5.0", features = ["rt-multi-thread"] }
tokio = { version = "1.8.0", features = ["rt-multi-thread"] }
[features]
test_programs = []

View File

@@ -14,7 +14,7 @@ include = ["src/**/*", "LICENSE" ]
wasi-common = { path = "../", version = "0.28.0" }
wasi-cap-std-sync = { path = "../cap-std-sync", version = "0.28.0" }
wiggle = { path = "../../wiggle", version = "0.28.0" }
tokio = { version = "1.5.0", features = [ "rt", "fs", "time", "io-util", "net", "io-std", "rt-multi-thread"] }
tokio = { version = "1.8.0", features = [ "rt", "fs", "time", "io-util", "net", "io-std", "rt-multi-thread"] }
cap-std = "0.13.7"
cap-fs-ext = "0.13.7"
cap-time-ext = "0.13.7"
@@ -36,6 +36,6 @@ lazy_static = "1.4"
[dev-dependencies]
tempfile = "3.1.0"
tokio = { version = "1.5.0", features = [ "macros" ] }
tokio = { version = "1.8.0", features = [ "macros" ] }
anyhow = "1"
cap-tempfile = "0.13.7"