From 7dfd96481c76db53c6491558a18b0b497a5053a4 Mon Sep 17 00:00:00 2001 From: Stephen Belanger Date: Thu, 23 Oct 2025 16:57:30 -0700 Subject: [PATCH] Use Rust core async trait support --- Cargo.toml | 1 - src/embed.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f95b5fa..423f404 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,6 @@ name = "php-main" path = "src/main.rs" [dependencies] -async-trait = "0.1.88" bytes = "1.10.1" hostname = "0.4.1" ext-php-rs = { version = "0.14.0", features = ["embed"] } diff --git a/src/embed.rs b/src/embed.rs index 14ea8e3..51447a7 100644 --- a/src/embed.rs +++ b/src/embed.rs @@ -189,7 +189,6 @@ impl Embed { } } -#[async_trait::async_trait] impl Handler for Embed { type Error = EmbedRequestError;