[package]
edition = "2024"
name = "pgdrift"
version = "0.1.2"
authors = ["Moeder Balla"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool for detecting schema drift in PostgreSQL JSONB columns"
homepage = "https://github.com/capybarastack/pgdrift"
readme = false
keywords = [
"postgresql",
"jsonb",
"schema",
"drift",
"database",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT"
repository = "https://github.com/capybarastack/pgdrift"
resolver = "2"
[lib]
name = "pgdrift"
path = "src/lib.rs"
[[bin]]
name = "pgdrift"
path = "src/main.rs"
[[test]]
name = "analyze_integration_test"
path = "tests/analyze_integration_test.rs"
[[test]]
name = "discover_integration_test"
path = "tests/discover_integration_test.rs"
[[test]]
name = "index_integration_test"
path = "tests/index_integration_test.rs"
[[test]]
name = "scan_all_integration_test"
path = "tests/scan_all_integration_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.colored]
version = "3.1"
[dependencies.indicatif]
version = "0.18"
[dependencies.pgdrift-core]
version = "0.1.2"
[dependencies.pgdrift-db]
version = "0.1.2"
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"postgres",
"runtime-tokio",
"json",
"tls-rustls",
]
[dependencies.tabled]
version = "0.20"
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.sqlx]
version = "0.8"
features = [
"postgres",
"runtime-tokio",
"json",
"tls-rustls",
]