From 8c3d343df114f0f87ca70667f2b7117261e002ae Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Mon, 9 Sep 2024 03:03:21 +0800 Subject: [PATCH] Update async-std to 1.13 --- Cargo.toml | 2 +- examples/async-std-runtime/Cargo.toml | 2 +- packages/apalis-cron/Cargo.toml | 2 +- packages/apalis-redis/Cargo.toml | 2 +- packages/apalis-sql/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ae3d60f..1c0f372 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -133,7 +133,7 @@ members = [ tokio = { version = "1", features = [ "rt", ], default-features = false, optional = true } -async-std = { version = "1", optional = true } +async-std = { version = "1.13.0", optional = true } tower = { version = "0.4", features = ["util"], default-features = false } tracing-futures = { version = "0.2.5", optional = true, default-features = false } sentry-core = { version = "0.34.0", optional = true, default-features = false } diff --git a/examples/async-std-runtime/Cargo.toml b/examples/async-std-runtime/Cargo.toml index 18701e1..ef80178 100644 --- a/examples/async-std-runtime/Cargo.toml +++ b/examples/async-std-runtime/Cargo.toml @@ -14,7 +14,7 @@ apalis = { path = "../../", default-features = false, features = [ ] } apalis-cron = { path = "../../packages/apalis-cron" } apalis-core = { path = "../../packages/apalis-core", default-features = false } -async-std = { version = "1.12.0", features = ["attributes"] } +async-std = { version = "1.13.0", features = ["attributes"] } serde = "1" tracing-subscriber = "0.3.11" chrono = { version = "0.4", default-features = false, features = ["clock"] } diff --git a/packages/apalis-cron/Cargo.toml b/packages/apalis-cron/Cargo.toml index b7e57a1..02fa826 100644 --- a/packages/apalis-cron/Cargo.toml +++ b/packages/apalis-cron/Cargo.toml @@ -21,7 +21,7 @@ chrono = { version = "0.4.38", default-features = false, features = [ "serde", ] } async-stream = "0.3.5" -async-std = { version = "1.12.0", optional = true } +async-std = { version = "1.13.0", optional = true } [dev-dependencies] tokio = { version = "1", features = ["macros"] } diff --git a/packages/apalis-redis/Cargo.toml b/packages/apalis-redis/Cargo.toml index fa60afc..d9205e2 100644 --- a/packages/apalis-redis/Cargo.toml +++ b/packages/apalis-redis/Cargo.toml @@ -31,7 +31,7 @@ chrono = { version = "0.4.38", default-features = false, features = [ async-stream = "0.3.5" futures = "0.3.30" tokio = { version = "1", features = ["rt", "net"], optional = true } -async-std = { version = "1.12.0", optional = true } +async-std = { version = "1.13.0", optional = true } async-trait = "0.1.80" tower = "0.4" diff --git a/packages/apalis-sql/Cargo.toml b/packages/apalis-sql/Cargo.toml index ab2da35..80851d2 100644 --- a/packages/apalis-sql/Cargo.toml +++ b/packages/apalis-sql/Cargo.toml @@ -35,7 +35,7 @@ futures = "0.3.30" async-stream = "0.3.5" tokio = { version = "1", features = ["rt", "net"], optional = true } futures-lite = "2.3.0" -async-std = { version = "1.12.0", optional = true } +async-std = { version = "1.13.0", optional = true } chrono = { version = "0.4", features = ["serde"] }