torm 0.2.0

A Tokio-based async ORM for Rust with GORM-like API, supporting SQLite, MySQL and PostgreSQL via native wire protocols
Documentation
1
2
3
4
5
6
// ORM 层 - 模型、查询构建器、关联关系和迁移
pub mod model;
pub mod query;
pub mod advanced_query;
pub mod relations;
pub mod migration;