cookie_monster/
lib.rs

1mod cookie;
2mod error;
3mod jar;
4mod util;
5
6#[cfg(feature = "axum")]
7mod axum;
8
9#[cfg(feature = "http")]
10mod http;
11
12pub use cookie::{Cookie, CookieBuilder, same_site::SameSite};
13pub use error::Error;
14pub(crate) type Result<T, E = Error> = ::std::result::Result<T, E>;
15pub use jar::CookieJar;