Overview of the Gotham web framework
mainGotham is a flexible Rust web framework designed for stability, safety, security, and speed. It is built on top of the Tokio runtime and Hyper, providing an asynchronous-first experience.
Key Features
- Stability Focused: All releases target stable Rust. Automated builds are also run against Rust beta and nightly to ensure future compatibility.
- Statically Typed: Leverages Rust's type system to ensure applications are correctly expressed at compile time.
- Async Everything: Built on Tokio and Hyper, making all framework types asynchronous by default.
- High Performance: Optimized for low latency, with request processing times measurable in microseconds (µs).