From d7761c74fa200da6657cf75e73ed7985882966a5 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 14 Jan 2021 18:19:11 +0100 Subject: [PATCH] Upgrade actix-rt to 2.0.0-beta.2 --- Cargo.lock | 8 ++++---- sqlx-rt/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 084e3fff..25d2b56a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,9 +2,9 @@ # It is not intended for manual editing. [[package]] name = "actix-macros" -version = "0.1.3" +version = "0.2.0-beta.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4ca8ce00b267af8ccebbd647de0d61e0674b6e61185cc7a592ff88772bed655" +checksum = "32d550809c1471a3ed937cb2afefd7cba179a6ac4a0cb46361b3541bfcad7084" dependencies = [ "quote", "syn", @@ -12,9 +12,9 @@ dependencies = [ [[package]] name = "actix-rt" -version = "2.0.0-beta.1" +version = "2.0.0-beta.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dfadca59a1d7755a3828708977a2de80b51af0381bd0002ce8f0df3f6091928" +checksum = "ac24f3f660d4c394cc6d24272e526083c257d6045d3be76a9d0a76be5cb56515" dependencies = [ "actix-macros", "tokio", diff --git a/sqlx-rt/Cargo.toml b/sqlx-rt/Cargo.toml index 017f0a14..b54a8da2 100644 --- a/sqlx-rt/Cargo.toml +++ b/sqlx-rt/Cargo.toml @@ -29,7 +29,7 @@ _tls-rustls = [ ] [dependencies] async-native-tls = { version = "0.3.3", optional = true } async-rustls = { version = "0.2.0", optional = true } -actix-rt = { version = "=2.0.0-beta.1", optional = true } +actix-rt = { version = "=2.0.0-beta.2", optional = true } actix-threadpool = { version = "0.3.2", optional = true } async-std = { version = "1.7.0", features = [ "unstable" ], optional = true } tokio = { version = "1.0.1", optional = true, features = [ "fs", "net", "macros", "rt", "rt-multi-thread", "time", "io-util" ] }