bump tokio

This commit is contained in:
Dr. Matthias Ratajczak
2023-03-02 15:01:28 +01:00
parent 7bf3f410e1
commit 54c2255c1c
2 changed files with 6 additions and 21 deletions
Generated
+5 -20
View File
@@ -141,7 +141,7 @@ dependencies = [
"libc",
"log",
"wasi",
"windows-sys 0.45.0",
"windows-sys",
]
[[package]]
@@ -164,7 +164,7 @@ dependencies = [
"libc",
"redox_syscall",
"smallvec",
"windows-sys 0.45.0",
"windows-sys",
]
[[package]]
@@ -270,14 +270,14 @@ dependencies = [
[[package]]
name = "tokio"
version = "1.25.0"
version = "1.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af"
checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64"
dependencies = [
"autocfg",
"pin-project-lite",
"tokio-macros",
"windows-sys 0.42.0",
"windows-sys",
]
[[package]]
@@ -325,21 +325,6 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows-sys"
version = "0.45.0"
+1 -1
View File
@@ -6,7 +6,7 @@ version = "0.1.0"
[dependencies]
futures = { version = "0.3", default-features = false }
crossterm = { version = "0.26", default-features = false, features = ["event-stream"] }
tokio = { version = "1.25", default-features = false, features = ["time", "macros", "rt", "sync"] }
tokio = { version = "1.26", default-features = false, features = ["sync", "time", "rt", "macros"] }
[profile.release]
opt-level = "z"