Bumped tokio to avoid vulnerability.

More information: https://github.com/Xithrius/twitch-tui/security/dependabot/4
This commit is contained in:
Xithrius 2023-01-08 21:05:25 -08:00
parent 489cf9b686
commit ea9b7c37da
No known key found for this signature in database
GPG Key ID: A867F27CC80B28C1
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -1406,9 +1406,9 @@ dependencies = [
[[package]]
name = "tokio"
version = "1.23.0"
version = "1.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46"
checksum = "1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae"
dependencies = [
"autocfg",
"libc",

View File

@ -15,7 +15,7 @@ categories = ["command-line-utilities"]
[dependencies]
crossterm = "0.25.0"
tui = { version = "0.19.0", default-features = false, features = [ "crossterm" ] }
tokio = { version = "1.23.0", features = [ "rt", "macros", "rt-multi-thread" ] }
tokio = { version = "1.24.1", features = [ "rt", "macros", "rt-multi-thread" ] }
clap = { version = "4.0.32", features = [ "derive", "cargo" ] }
serde = { version = "1.0.152", features = [ "derive" ] }
serde_json = "1.0.91"