tideorm 0.9.13

A developer-friendly ORM for Rust with clean, expressive syntax
Documentation
# TideORM Documentation

The documentation has moved to an mdBook so it is easier to navigate, search, and publish.

For batch inserts, the supported model API is `Model::insert_all(...)`. The Models chapter documents its backend-specific behavior.

Primary entry points:

- Book source index: [docs/introduction.md]docs/introduction.md
- Chapter summary: [docs/SUMMARY.md]docs/SUMMARY.md
- Published site: <https://tideorm.com>

Chapter map:

- [Getting Started]docs/getting-started.md
- [Models]docs/models.md
- [Queries]docs/queries.md
- [Profiling]docs/profiling.md
- [Relations]docs/relations.md
- [Migrations]docs/migrations.md

If you need to build the site locally:

```bash
mdbook build
mdbook serve --open
```