#sqlx #plugin #web #axum #spring-rs

spring-sqlx-migration-plugin

A plugin to run SQLx migrations automatically within the SpringRS framework

6 releases

0.3.0 Feb 1, 2025
0.2.4 Nov 17, 2024
0.2.3 Oct 20, 2024

#1499 in Web programming

Download history 38/week @ 2024-10-22 1/week @ 2024-10-29 81/week @ 2024-11-12 34/week @ 2024-11-19 1/week @ 2024-11-26 11/week @ 2024-12-03 3/week @ 2024-12-10 105/week @ 2025-01-28 18/week @ 2025-02-04

123 downloads per month

MIT license

17KB

Spring Sqlx Migration Plugin

crates.io

It's just a plugin to execute the migrations of Sqlx into SpringRS

Key Features:

  • Seamless integration with SpringRS
  • Automatically runs SQLx migrations on application startup
  • Supports various databases compatible with SQLx
  • Configurable and easy to use

Just add into the app.toml the initial config for this plugin:

[sqlx]
uri = "postgres://postgres:xudjf23adj213@127.0.0.1:5432"

[sqlx-migration]
migration_folder = "./migrations"

And into your main.rs

#[auto_config(WebConfigurator)] // auto config web router
#[tokio::main]
async fn main() {
    App::new()
        .add_plugin(SqlxPlugin) // Add plug-in
        .add_plugin(SqlxMigrationPlugin) // Add plug-in
        .add_plugin(WebPlugin)
        .run().await
}

Dependencies

~20–35MB
~553K SLoC