Skip to main content

tower_sesh_core/
lib.rs

1//! Core of `tower-sesh`.
2//!
3//! # Warning
4//!
5//! The API of this crate is not meant for general use and does _not_ follow
6//! Semantic Versioning. If you are building a custom session store, you should
7//! pin an exact version of `tower-sesh-core` to avoid breakages:
8//!
9//! ```not_rust
10//! tower-sesh-core = { version = "=X.Y.Z" }
11//! ```
12//!
13//! And then keep releases in sync with `tower-sesh-core`.
14
15#[doc(inline)]
16pub use crate::key::SessionKey;
17#[doc(inline)]
18pub use crate::store::{Record, SessionStore};
19
20pub mod key;
21pub mod store;