[package]
name = "sqlk"
version = "0.1.5"
authors = ["Seth <seth@planetbun.com>"]
edition = "2024"
description = "A terminal-based PostgreSQL query execution and visualization tool with vim-like navigation."
license = "MIT OR Apache-2.0"
repository = "https://github.com/sethrollinsbah/sqlk"
readme = "README.md"
keywords = ["sql", "cli", "database"]
categories = ["database", "command-line-utilities"]
[lib]
name = "sqlk"
path = "src/lib.rs"
[[bin]]
name = "sqlk"
path = "src/main.rs"
[dependencies]
ratatui = "0.28"
crossterm = "0.28"
tokio = { version = "1.0", features = ["full"] }
sqlx = { version = "0.8", features = ["any", "runtime-tokio-rustls", "postgres", "mysql", "sqlite", "chrono","uuid", "json"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
clap = { version = "4.0", features = ["derive"] }
dotenv = "0.15"
dirs = "5.0"
anyhow = "1.0"
thiserror = "1.0"
regex = "1.10"
unicode-width = "0.1"
futures = "0.3"
async-trait = "0.1"
rand = "0.9.2"
chrono = "0.4.41"
serde_json = "1.0.143"
uuid = "1.18.0"
cli-clipboard = "0.4.0"
[dev-dependencies]
insta = "1.43.1"
tempfile = "3.8"