database-bootstrap 1.0.0

Simple and flexible database bootstraping system meant to run after migrations have run
Documentation
[package]
name = "database-bootstrap"
description = "Simple and flexible database bootstraping system meant to run after migrations have run"
keywords = ["database", "sea-orm", "sqlx"]
authors = ["Emil Schütt <emil.schutt@gmail.com>"]
license = "Apache-2.0"
repository = "https://gitea.tosic.nu/tosic.killer/database-bootstrap"
version = "1.0.0"
edition = "2024"

[dependencies]
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
tracing = "0.1"
uuid = { version = "1", features = ["v4", "serde"] }
futures = "0.3"
sea-orm = { version =  "1.1", default-features = false, optional = true }

[features]
default = ["sea-orm"]
sea-orm = ["dep:sea-orm"]