[package]
edition = "2021"
name = "pgmold"
version = "0.19.13"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL schema-as-code management tool"
readme = "README.md"
keywords = [
"postgresql",
"schema",
"migrations",
"database",
"cli",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT"
repository = "https://github.com/fmguerreiro/pgmold"
[lib]
name = "pgmold"
path = "src/lib.rs"
[[bin]]
name = "pgmold"
path = "src/main.rs"
[[test]]
name = "baseline"
path = "tests/baseline.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "semantic_equivalence"
path = "tests/semantic_equivalence.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlparser]
version = "0.60.1"
features = ["visitor"]
package = "pgmold-sqlparser"
[dependencies.sqlx]
version = "0.7"
features = [
"runtime-tokio-rustls",
"postgres",
]
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dev-dependencies.sqlx]
version = "0.7"
features = [
"runtime-tokio-rustls",
"postgres",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.testcontainers]
version = "0.23"
[dev-dependencies.testcontainers-modules]
version = "0.11"
features = ["postgres"]
[dev-dependencies.tokio]
version = "1.35"
features = ["full"]
[build-dependencies.sqlparser]
version = "0.60.1"
features = ["visitor"]
package = "pgmold-sqlparser"