siwa-async 0.5.2

Sign In With Apple Validation in Async Rust
Documentation
//! # Async Sign In With Apple
//!
//! Follow the <https://developer.apple.com/documentation/sign_in_with_apple>
#![forbid(unsafe_code)]
#![deny(clippy::pedantic)]
#![deny(clippy::unwrap_used)]
#![deny(clippy::panic)]
#![deny(clippy::perf)]
#![deny(clippy::nursery)]
#![deny(clippy::match_like_matches_macro)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::missing_errors_doc)]

mod auth;
mod common;
mod s2sne;

pub use auth::{auth_token, identity_token, siwa_response, utils};
pub use common::{error, object};