[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.4.7", features = ["derive", "env"] }
console = "0.15.7"
ctrlc = { version = "3.4.1", features = ["termination"] }
either = "1.9.0"
fs_extra = "1.3.0"
indicatif = "0.17.7"
log = "0.4.20"
miette = { version = "5.10.0", features = ["fancy"] }
pgdo-lib = { version = "0.4.1", path = "../pgdo-lib" }
shell-quote = "0.5.0"
simple_logger = "4.2.0"
tempfile = "3.8.0"
thiserror = "1.0.50"
tokio = { version = "1.33.0", features = ["full"] }
uuid = { version = "1.5.0", features = ["v5"] }