squigit-auth 0.1.0

OAuth profiles and encrypted provider credentials for Squigit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2026 a7mddra
// SPDX-License-Identifier: Apache-2.0

mod callback_server;
mod credentials;
mod google;

pub use callback_server::{
    google_auth_status_page_url_for, AuthFlowSettings, BrowserOpener, LoopbackAuthPage,
    LoopbackAuthServer,
};
pub use credentials::{validate_google_credentials, CredentialsSource};
pub use google::{
    begin_google_auth_flow, complete_google_auth_flow, hydrate_avatar, GoogleAuthAttempt,
};