1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#![doc(html_root_url = "https://finchers-rs.github.io/docs/finchers-session/v0.1.0")]
#![warn(
missing_docs,
missing_debug_implementations,
nonstandard_style,
rust_2018_idioms,
unused,
)]
#![cfg_attr(feature = "strict", deny(warnings))]
#![cfg_attr(feature = "strict", doc(test(attr(deny(warnings)))))]
#[macro_use]
extern crate failure;
extern crate finchers;
#[cfg_attr(feature = "redis", macro_use)]
extern crate futures;
extern crate time;
extern crate uuid;
mod session;
#[cfg(test)]
mod tests;
mod util;
pub mod cookie;
pub mod in_memory;
#[cfg(feature = "redis")]
pub mod redis;
pub use self::session::{RawSession, Session};