[package]
name = "pgrsql"
version = "0.1.2"
edition = "2021"
authors = ["Muk2"]
description = "A beautiful TUI SQL editor for PostgreSQL"
license = "MIT"
repository = "https://github.com/muk2/pgrsql"
keywords = ["postgresql", "sql", "tui", "database", "editor"]
categories = ["command-line-utilities", "database"]
[dependencies]
ratatui = "0.28"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4", "with-serde_json-1"] }
deadpool-postgres = "0.14"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
anyhow = "1"
thiserror = "1"
chrono = { version = "0.4", features = ["serde"] }
syntect = "5"
unicode-width = "0.1"
arboard = "3"
native-tls = "0.2"
postgres-native-tls = "0.5"
clap = { version = "4", features = ["derive"] }
rpassword = "5"
dirs = "5"
tracing = "0.1"
tracing-subscriber = "0.3"
[[bin]]
name = "pgrsql"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
strip = true