cargo upgrade tokio

This commit is contained in:
Bryan Stitt 2023-06-29 23:16:31 -07:00
parent 4a03d2e331
commit 645fa7328b
7 changed files with 10 additions and 10 deletions

4
Cargo.lock generated
View File

@ -6280,9 +6280,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
version = "1.29.0"
version = "1.29.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "374442f06ee49c3a28a8fc9f01a2596fed7559c6b99b31279c3261778e77d84f"
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
dependencies = [
"autocfg",
"backtrace",

View File

@ -11,6 +11,6 @@ anyhow = "1.0.71"
hashbrown = "0.14.0"
log = "0.4.19"
moka = { version = "0.11.2", features = ["future"] }
tokio = "1.29.0"
tokio = "1.29.1"
tracing = "0.1.37"
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

@ -10,10 +10,10 @@ flume = "0.10.14"
log = "0.4.19"
portable-atomic = { version = "1.3.3", features = ["float"] }
serde = { version = "1.0.164", features = [] }
tokio = { version = "1.29.0", features = ["full"] }
tokio = { version = "1.29.1", features = ["full"] }
tracing = "0.1.37"
watermill = "0.1.1"
workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dev-dependencies]
tokio = { version = "1.29.0", features = ["full", "test-util"] }
tokio = { version = "1.29.1", features = ["full", "test-util"] }

View File

@ -9,7 +9,7 @@ name = "migration"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1.29.0", features = ["full", "tracing"] }
tokio = { version = "1.29.1", features = ["full", "tracing"] }
workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dependencies.sea-orm-migration]

View File

@ -5,5 +5,5 @@ authors = ["Bryan Stitt <bryan@llamanodes.com>"]
edition = "2021"
[dependencies]
tokio = { version = "1.29.0", features = ["time"] }
tokio = { version = "1.29.1", features = ["time"] }
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

@ -8,5 +8,5 @@ edition = "2021"
anyhow = "1.0.71"
chrono = "0.4.26"
deadpool-redis = { version = "0.12.0", features = ["rt_tokio_1", "serde"] }
tokio = "1.29.0"
tokio = "1.29.1"
workspace-hack = { version = "0.1", path = "../workspace-hack" }

View File

@ -94,7 +94,7 @@ serde_prometheus = "0.2.3"
strum = { version = "0.25.0", features = ["derive"] }
time_01 = { package = "time", version = "0.1" }
time_03 = { package = "time", version = "0.3" }
tokio = { version = "1.29.0", features = ["full", "tracing"] }
tokio = { version = "1.29.1", features = ["full", "tracing"] }
tokio-console = { version = "0.1.8", optional = true }
tokio-stream = { version = "0.1.14", features = ["sync"] }
tokio-uring = { version = "0.4.0", optional = true }
@ -115,6 +115,6 @@ test-log = { version = "0.2.12", default-features = false, features = ["trace"]
[dev-dependencies]
env_logger = "0.10"
test-log = "0.2.12"
tokio = { version = "1.29.0", features = ["full", "test-util"] }
tokio = { version = "1.29.1", features = ["full", "test-util"] }
tracing = {version = "0.1", default-features = false}
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}