stynx-code-auth 3.12.1

Authentication with API keys and macOS Keychain OAuth
Documentation
1
2
3
4
5
6
7
8
9
mod pkce;
mod callback_server;
mod browser;
mod token_store;

pub use pkce::{PkceChallenge, generate_pkce};
pub use callback_server::{generate_state, run_callback_server};
pub use browser::open_browser;
pub use token_store::{OAuthTokens, TokenStore, FileTokenStore};