[package]
authors.workspace = true
categories.workspace = true
description = "The convenience of SQLite – but with PostgreSQL (Command-line application)"
edition.workspace = true
keywords.workspace = true
license.workspace = true
name = "pgdo-cli"
readme = "README.md"
repository.workspace = true
version.workspace = true
[[bin]]
doc = false
name = "pgdo"
path = "src/main.rs"
[dependencies]
clap = { version = "=4.5.37", features = ["derive", "env"] }
console = "=0.15.11"
ctrlc = { version = "=3.4.6", features = ["termination"] }
either = "=1.15.0"
fs_extra = "=1.3.0"
indicatif = "=0.17.11"
log = "=0.4.27"
miette = { version = "=7.5.0", features = ["fancy"] }
pgdo-lib = { version = "=0.5.2", path = "../pgdo-lib" }
shell-quote = "=0.7.2"
simple_logger = "=5.0.0"
tempfile = "=3.19.1"
thiserror = "=2.0.12"
uuid = { version = "=1.16.0", features = ["v5"] }
[dependencies.tokio]
version = "=1.44.2"
features = ["parking_lot", "rt-multi-thread"]
default-features = false