upgrade tokio

its a change for windows so doesn't really matter
This commit is contained in:
Bryan Stitt 2023-01-04 14:34:58 -08:00
parent ec43d69462
commit 221f2c1651
5 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@ -4983,9 +4983,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.23.0"
version = "1.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46"
checksum = "38a54aca0c15d014013256222ba0ebed095673f89345dd79119d912eb561b7a8"
dependencies = [
"autocfg",
"bytes",

View File

@ -11,4 +11,4 @@ anyhow = "1.0.68"
hashbrown = "0.13.1"
log = "0.4.17"
moka = { version = "0.9.6", default-features = false, features = ["future"] }
tokio = "1.23.0"
tokio = "1.23.1"

View File

@ -9,7 +9,7 @@ name = "migration"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1.23.0", features = ["full", "tracing"] }
tokio = { version = "1.23.1", features = ["full", "tracing"] }
[dependencies.sea-orm-migration]
version = "0.10.6"

View File

@ -7,4 +7,4 @@ edition = "2021"
[dependencies]
anyhow = "1.0.68"
deadpool-redis = { version = "0.11.1", features = ["rt_tokio_1", "serde"] }
tokio = "1.23.0"
tokio = "1.23.1"

View File

@ -60,7 +60,7 @@ serde_json = { version = "1.0.91", default-features = false, features = ["alloc"
serde_prometheus = "0.1.6"
# TODO: make sure this time version matches siwe. PR to put this in their prelude
time = "0.3.17"
tokio = { version = "1.23.0", features = ["full"] }
tokio = { version = "1.23.1", features = ["full"] }
# TODO: make sure this uuid version matches sea-orm. PR to put this in their prelude
tokio-stream = { version = "0.1.11", features = ["sync"] }
toml = "0.5.10"