cheers-providers 0.8.22

Identity providers (OIDC, Apple Sign In, passkey, email magic-link, password, LAN-pair) and native credential stores built on cheers-core.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Platform credential stores — implementations of [`cheers_core::store::CredentialStore`].
//!
//! Each backend is feature-gated:
//!
//! | Feature    | Store             | Notes                                      |
//! |------------|-------------------|--------------------------------------------|
//! | `headless` | [`MemoryStore`]   | In-memory; for tests and embedded contexts |
//! | `headless` | `EncryptedFileStore` | age-encrypted file (P8 follow-on)       |
//! | `keyring`  | `KeyringStore`    | System keyring (P8 follow-on)              |

#[cfg(feature = "headless")]
pub mod memory;

#[cfg(feature = "headless")]
pub use memory::MemoryStore;