arche 3.0.1

An opinionated backend foundation for Axum applications, providing batteries-included integrations for cloud services, databases, authentication, middleware, and logging.
Documentation
pub mod agent;
pub mod aws;
pub(crate) mod config;
pub mod crypto;
pub mod csv;
pub mod database;
pub mod error;
pub mod gcp;
pub mod json;
pub mod jwt;
pub mod llm;
pub mod sockets;
pub mod utils;

pub use aws_config;
pub use aws_sdk_kms;
pub use aws_sdk_s3;
pub use aws_sdk_sesv2;
pub use axum;
pub use base64;
pub use bb8;
pub use bb8_redis;
pub use csv_async;
pub use dotenv;
pub use futures;
pub use google_drive3;
pub use google_sheets4;
pub use jsonwebtoken;
pub use nanoid;
pub use reqwest;
pub use serde;
pub use serde_json;
pub use sqlx;
pub use thiserror;
pub use time;
pub use tokio;
pub use tokio_stream;
pub use tracing;
pub use tracing_subscriber;