fix cookie import

This commit is contained in:
Rob Ede 2021-04-19 02:53:37 +01:00
parent 7684d3c588
commit 0aadde677c
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ use actix_http::{
}; };
use actix_router::{IntoPattern, Path, Resource, ResourceDef, Url}; use actix_router::{IntoPattern, Path, Resource, ResourceDef, Url};
use actix_service::{IntoServiceFactory, ServiceFactory}; use actix_service::{IntoServiceFactory, ServiceFactory};
#[cfg(feature = "cookies")]
use cookie::{Cookie, ParseError as CookieParseError}; use cookie::{Cookie, ParseError as CookieParseError};
use crate::dev::insert_slash; use crate::dev::insert_slash;