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
46
47
48
49
50
51
52
53
//! Refresh-token storage backends and factory utilities.
//!
//! Mirrors the
//! [`store/`](https://github.com/LdDl/echo-jwt/tree/master/store) package
//! from the Go implementation.
//!
//! # Available backends
//!
//! | Backend | Feature flag | Type |
//! |---------|-------------|------|
//! | In-memory (`HashMap` + `RwLock`) | *(always)* | [`InMemoryRefreshTokenStore`] |
//! | Redis (`redis` crate) | `redis-store` | `RedisRefreshTokenStore` |
//!
//! # Factory
//!
//! Use [`Factory`], [`new_store`], [`new_memory_store`] or [`default_store`]
//! to create stores without importing concrete types.
//!
//! ```
//! use actix_jwt::store::{default_store, new_memory_store};
//!
//! let store = default_store();
//! let another = new_memory_store();
//! ```
pub use *;
pub use *;
pub use *;
use crateTokenStore;
/// Creates a default in-memory token store.
///
/// This is a shorthand for `Box::new(InMemoryRefreshTokenStore::new())`.
///
/// # Examples
///
/// ```
/// # #[tokio::main]
/// # async fn main() {
/// let store = actix_jwt::store::default_store();
/// assert_eq!(store.count().await.unwrap(), 0);
/// # }
/// ```