volo-http 0.5.5

HTTP framework implementation of volo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Cookie utilities of Volo-HTTP.
//!
//! [`CookieJar`] currently only supports the server side.

mod jar;
mod store;

pub use cookie::{Cookie, time::Duration};
pub use jar::CookieJar;
#[cfg(feature = "client")]
pub(crate) use store::CookieStore;