tiny-orm 0.5.1

A tiny ORM for CRUD operations built on top of SQLx QueryBuilder.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# TODOs Example

## Usage

```sh
docker run --rm -p 3306:3306 \
    -e MYSQL_ROOT_PASSWORD=root \
    -e MYSQL_DATABASE=examples \
    -e MYSQL_USER=user \
    -e MYSQL_PASSWORD=password \
    mysql:9
cargo run --example mysql --features mysql
```