From d4c2caa53736ada8cd78e256fb95019b79e74bf7 Mon Sep 17 00:00:00 2001 From: Omid Rad Date: Sat, 5 Mar 2022 23:11:59 +0100 Subject: Actix 4 (#56) * Remove all default actix features * Set MSRV * Have `actix4` feature, instead of `actix` * enable actix tests for all features --- tests/test_actix.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'tests/test_actix.rs') diff --git a/tests/test_actix.rs b/tests/test_actix.rs index 062cf0c..5159977 100644 --- a/tests/test_actix.rs +++ b/tests/test_actix.rs @@ -1,6 +1,9 @@ -#![cfg(feature = "actix")] +#![cfg(any(feature = "actix4", feature = "actix3", feature = "actix2"))] -extern crate actix_web; +#[cfg(feature = "actix3")] +extern crate actix_web3 as actix_web; +#[cfg(feature = "actix4")] +extern crate actix_web4 as actix_web; extern crate serde; #[macro_use] -- cgit v1.2.3