[package]
edition = "2021"
name = "pgmold"
version = "0.22.5"
build = false
exclude = [
".auto-claude/",
".auto-claude-security.json",
".claude_settings.json",
]
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 = "constraints"
path = "tests/constraints.rs"
[[test]]
name = "default_privileges"
path = "tests/default_privileges.rs"
[[test]]
name = "drift"
path = "tests/drift.rs"
[[test]]
name = "dump"
path = "tests/dump.rs"
[[test]]
name = "enums"
path = "tests/enums.rs"
[[test]]
name = "filters"
path = "tests/filters.rs"
[[test]]
name = "foreign_keys"
path = "tests/foreign_keys.rs"
[[test]]
name = "functions"
path = "tests/functions.rs"
[[test]]
name = "grants"
path = "tests/grants.rs"
[[test]]
name = "multi_file"
path = "tests/multi_file.rs"
[[test]]
name = "ownership"
path = "tests/ownership.rs"
[[test]]
name = "partitions"
path = "tests/partitions.rs"
[[test]]
name = "plan"
path = "tests/plan.rs"
[[test]]
name = "policies"
path = "tests/policies.rs"
[[test]]
name = "semantic_equivalence"
path = "tests/semantic_equivalence.rs"
[[test]]
name = "sequences"
path = "tests/sequences.rs"
[[test]]
name = "tables"
path = "tests/tables.rs"
[[test]]
name = "triggers"
path = "tests/triggers.rs"
[[test]]
name = "validate"
path = "tests/validate.rs"
[[test]]
name = "vector"
path = "tests/vector.rs"
[[test]]
name = "version_schema"
path = "tests/version_schema.rs"
[[test]]
name = "views"
path = "tests/views.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.glob]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.petgraph]
version = "0.6"
[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"