From 9400b3c984893cb1c9dbba803fa42ec31cbdf926 Mon Sep 17 00:00:00 2001 From: fakeshadow <24548779@qq.com> Date: Thu, 5 Nov 2020 05:19:55 +0800 Subject: [PATCH] fix import Realized awc is a separate crate so the old import is correct and would cause no confusion when using it stand alone. --- awc/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awc/README.md b/awc/README.md index a58fef448..cbe299aaf 100644 --- a/awc/README.md +++ b/awc/README.md @@ -17,8 +17,8 @@ ## Example ```rust -use actix_web::client::Client; -use actix_web::rt::System; +use actix_rt::System; +use awc::Client; fn main() { System::new("test").block_on(async {