From 77d4a69b2f2c5cd0b708054d5d646c4b22e03820 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 8 Mar 2022 21:57:02 +0000 Subject: [PATCH] update tokio-uring to 0.3 (#449) --- actix-rt/Cargo.toml | 2 +- actix-server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index 406c1de5..3925b7b9 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -31,7 +31,7 @@ tokio = { version = "1.13.1", features = ["rt", "net", "parking_lot", "signal", # runtime for io-uring feature [target.'cfg(target_os = "linux")'.dependencies] -tokio-uring = { version = "0.2", optional = true } +tokio-uring = { version = "0.3", optional = true } [dev-dependencies] tokio = { version = "1.13.1", features = ["full"] } diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 4a788a9b..a5781777 100755 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -38,7 +38,7 @@ tokio = { version = "1.13.1", features = ["sync"] } # runtime for io-uring feature [target.'cfg(target_os = "linux")'.dependencies] -tokio-uring = { version = "0.2", optional = true } +tokio-uring = { version = "0.3", optional = true } [dev-dependencies] actix-codec = "0.5.0"