1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-25 00:12:59 +01:00
actix-extras/src/lib.rs

22 lines
403 B
Rust
Raw Normal View History

2017-12-29 06:14:04 +01:00
extern crate actix;
extern crate actix_web;
extern crate bytes;
2017-12-29 10:10:27 +01:00
extern crate cookie;
2017-12-29 06:14:04 +01:00
extern crate futures;
extern crate serde;
extern crate serde_json;
2017-12-29 10:10:27 +01:00
extern crate rand;
extern crate http;
2017-12-29 06:14:04 +01:00
extern crate tokio_io;
extern crate tokio_core;
#[macro_use]
extern crate redis_async;
#[macro_use]
extern crate failure;
mod redis;
mod session;
2017-12-29 10:10:27 +01:00
pub use redis::RedisActor;
2017-12-29 06:14:04 +01:00
pub use session::RedisSessionBackend;