| Crates.io | dbmaters |
| lib.rs | dbmaters |
| version | 0.2.0 |
| created_at | 2025-05-06 03:04:08.489807+00 |
| updated_at | 2025-05-06 03:04:08.489807+00 |
| description | A Rust library for database migrations using dbmate |
| homepage | |
| repository | https://github.com/auser/dbmaters |
| max_upload_size | |
| id | 1661825 |
| size | 3,859,719 |
DBmaters is a Rust library that provides a C API for database migrations using the fantastic dbmate project.
This library requires the Go library to be built first. Run:
make build-go-static
cargo build
use dbmaters;
fn main() {
dbmaters::create_and_migrate("postgres://localhost/mydb");
}