[package]
edition = "2024"
name = "prax-migrate"
version = "0.6.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Migration engine for the Prax ORM - schema diffing, SQL generation, and history tracking"
homepage = "https://github.com/pegasusheavy/prax-orm"
readme = "README.md"
keywords = [
"orm",
"database",
"migrations",
"postgresql",
"async",
]
categories = [
"database",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pegasusheavy/prax-orm"
resolver = "2"
[features]
default = []
tracing = ["dep:tracing"]
[lib]
name = "prax_migrate"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.prax-schema]
version = "0.6.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = [
"full",
"fs",
]
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.tempfile]
version = "3.24"