From 2bdcbf05a44a2284baf5b26256446a32f369c974 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 19 Feb 2026 07:09:29 +0900 Subject: [PATCH] chore: drop actors from workspace (#3943) --- Cargo.lock | 45 --------------------------------------------- Cargo.toml | 2 -- 2 files changed, 47 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6a185355f..b7c3358e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,29 +2,6 @@ # It is not intended for manual editing. version = 4 -[[package]] -name = "actix" -version = "0.13.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de7fa236829ba0841304542f7614c42b80fca007455315c45c785ccfa873a85b" -dependencies = [ - "actix-rt", - "bitflags 2.10.0", - "bytes", - "crossbeam-channel", - "futures-core", - "futures-sink", - "futures-task", - "futures-util", - "log", - "once_cell", - "parking_lot", - "pin-project-lite", - "smallvec", - "tokio", - "tokio-util", -] - [[package]] name = "actix-codec" version = "0.5.2" @@ -404,28 +381,6 @@ dependencies = [ "zstd", ] -[[package]] -name = "actix-web-actors" -version = "4.3.1+deprecated" -dependencies = [ - "actix", - "actix-codec", - "actix-http", - "actix-rt", - "actix-test", - "actix-web", - "awc", - "bytes", - "bytestring", - "env_logger", - "futures-core", - "futures-util", - "mime", - "pin-project-lite", - "tokio", - "tokio-util", -] - [[package]] name = "actix-web-codegen" version = "4.3.0" diff --git a/Cargo.toml b/Cargo.toml index 360239d33..905a6ce81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,6 @@ members = [ "actix-multipart-derive", "actix-router", "actix-test", - "actix-web-actors", "actix-web-codegen", "actix-web", "awc", @@ -39,7 +38,6 @@ actix-multipart-derive = { path = "actix-multipart-derive" } actix-router = { path = "actix-router" } actix-test = { path = "actix-test" } actix-web = { path = "actix-web" } -actix-web-actors = { path = "actix-web-actors" } actix-web-codegen = { path = "actix-web-codegen" } awc = { path = "awc" }