1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 10:27:42 +02:00

apply imports_granularity fmt rule

This commit is contained in:
Rob Ede
2022-09-11 21:55:40 +01:00
parent 339b81e843
commit 1561bda822
17 changed files with 59 additions and 56 deletions

View File

@ -1,13 +1,14 @@
use std::collections::HashMap;
use std::convert::TryInto;
use std::{collections::HashMap, convert::TryInto};
use actix_session::storage::{LoadError, SaveError, SessionKey, SessionStore, UpdateError};
use actix_session::{Session, SessionMiddleware};
use actix_web::body::MessageBody;
use actix_web::http::StatusCode;
use actix_session::{
storage::{LoadError, SaveError, SessionKey, SessionStore, UpdateError},
Session, SessionMiddleware,
};
use actix_web::{
body::MessageBody,
cookie::{time::Duration, Key},
dev::Service,
http::StatusCode,
test, web, App, Responder,
};
use anyhow::Error;