[package]
edition = "2024"
name = "pgdrift-db"
version = "0.1.2"
authors = ["Moeder Balla"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Database layer for pgdrift - PostgreSQL connection handling and sampling strategies"
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_db"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.futures]
version = "0.3"
[dependencies.indicatif]
version = "0.18"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"postgres",
"runtime-tokio",
"json",
"tls-rustls",
]
[dependencies.testcontainers]
version = "0.27"
[dependencies.tokio]
version = "1"
features = ["full"]