modelvault 0.16.0

Application-focused embedded database for typed models — validation, migrations, nested objects, single-file deploy.
Documentation
1
2
3
4
5
6
use modelvault::DbModel;

#[derive(DbModel)]
struct MissingPrimary {
    id: i64,
}