zino is a next-generation framework for composable applications in Rust
which emphasizes simplicity, extensibility and productivity.
Highlights
- 🚀 Out-of-the-box features for rapid application development.
- 🎨 Minimal design, composable architecture and high-level abstractions.
- 🌐 Adopt an API-first approch to development with open standards.
- ⚡ Embrace practical conventions to get the best performance.
- 💎 Highly optimized ORM for MySQL, PostgreSQL and SQLite based on
sqlx. - ✨ Innovations on query population, field translation and model hooks.
- 📅 Lightweight scheduler for sync and async cron jobs.
- 💠 Unified access to storage services, data sources and chatbots.
- 📊 Built-in support for
tracing,metricsand logging. - 💖 Full integrations with
actix-web,axumanddioxus.
Getting started
You can start with the example actix-app, axum-app or dioxus-desktop.
Here is the simplest application to run a server:
[]
= "zino-app"
= "0.1.0"
= "2021"
[]
= { = "0.19", = ["axum"] }
use *;
Feature flags
The following optional features are available:
| Name | Description | Default? |
|---|---|---|
actix |
Enables the integration with actix-web. |
No |
axum |
Enables the integration with axum. |
No |
dioxus |
Enables the integration with dioxus. |
No |
orm |
Enables the ORM for MySQL, PostgreSQL or SQLite. | No |