mool 0.2.0

A source-first Rust database toolkit for typed SQL queries, migrations, and model metadata
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(dead_code)]

use mool as db;

static MIGRATIONS: db::EmbeddedMigrations =
    db::embedded_migrations!("tests/fixtures/migrations");

fn main() {
    let _source = db::root_migration(&MIGRATIONS);
}