Crate zino

source ·
Expand description

zino is a full-featured web application framework for Rust with a focus on productivity and performance.

Highlights

  • 🚀 Out-of-the-box features for rapid application development.
  • ✨ Minimal design, modular architecture and high-level abstractions.
  • ⚡ Embrace practical conventions to get the best performance.
  • 🐘 Highly optimized ORM for PostgreSQL built on top of sqlx.
  • 🕗 Lightweight scheduler for sync and async cron jobs.
  • 📊 Support for tracing, metrics and logging.

Getting started

You can start with the example axum-app.

Feature flags

Currently, we only provide the axum feature to enable an integration with axum.

Re-exports

pub use zino_core::application::Application;
pub use zino_core::database::Model;
pub use zino_core::database::Query;
pub use zino_core::database::Schema;
pub use zino_core::datetime::DateTime;
pub use zino_core::extend::JsonObjectExt;
pub use zino_core::request::RequestContext;
pub use zino_core::response::ExtractRejection;
pub use zino_core::schedule::AsyncCronJob;
pub use zino_core::schedule::CronJob;
pub use zino_core::BoxFuture;
pub use zino_core::Map;
pub use zino_core::Record;
pub use zino_core::Uuid;

Structs

An HTTP server cluster for axum.
An HTTP request extractor for axum.

Type Definitions

A specialized request extractor for axum.
A specialized response for axum.
Resultaxum
A specialized Result type for axum.