Standard Library

std.*

Five modules that cover 90% of what APIs need. Built-in, zero config.

Every module compiles to proven Rust crates — Axum for HTTP, rusqlite for databases, jsonwebtoken + bcrypt for auth, dotenvy for environment.

Modules

Click any module to see the full API reference, examples, and generated Rust output.

Design Philosophy

Why a standard library matters for AID.

🎯

Zero Config

Import a module and use it. No package.json, no Cargo.toml, no pip install. The compiler knows what Rust crates to pull.

🔒

Secure Defaults

bcrypt cost factor 12, JWT HS256, parameterized queries. You get production security without thinking about it.

Native Performance

Every module compiles to optimized Rust. No runtime overhead, no interpreter — just fast, safe native code.