[package]
name = "sql-insight-cli"
description = "A CLI utility for SQL query analysis, formatting, and transformation."
documentation = "https://docs.rs/sql-insight-cli/"
keywords = ["sql", "cli", "lineage", "crud", "normalization"]
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE.txt",
]
readme = "README.md"
version = "0.3.0"
edition = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
authors = { workspace = true }
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/sql-insight-cli-v{ version }/sql-insight-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "{ bin }{ binary-ext }"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/sql-insight-cli-v{ version }/sql-insight-{ target }.zip"
pkg-fmt = "zip"
[[bin]]
name = "sql-insight"
path = "src/main.rs"
doc = false
[dependencies]
sql-insight = { path = "../sql-insight", version = "0.4.0", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"
clap_mangen = "0.3"
rustyline = "18.0.0"
serde = "1.0.228"
serde_json = "1.0.150"
[dev-dependencies]
assert_cmd = "2.0.13"
predicates = "3.1.0"
tempfile = "3.1.0"
tokio = { version = "1.36.0", features = ["full"] }