sql-cli 1.38.0

SQL query tool for CSV/JSON with both interactive TUI and non-interactive CLI modes - perfect for exploration and automation
Documentation
[package]
name = "sql-cli"
version = "1.38.0"
edition = "2021"
authors = ["TimelordUK <sjames8888@gmail.com>"]
description = "SQL query tool for CSV/JSON with both interactive TUI and non-interactive CLI modes - perfect for exploration and automation"
license = "MIT"
repository = "https://github.com/TimelordUK/sql-cli"
homepage = "https://github.com/TimelordUK/sql-cli"
documentation = "https://github.com/TimelordUK/sql-cli"
readme = "README.md"
keywords = ["csv", "tui", "sql", "vim", "data-analysis"]
categories = ["command-line-utilities", "database", "development-tools"]
exclude = [
    "sql-cli/",
    "proxy-server/",
    "TradeApi/",
    "TradeApi.Tests/",
    "*.gif",
    "*.cast",
    "*.csv",
    "*.json",
    "*.ps1",
    "coverage/",
    "scripts/",
    ".github/",
    ".vscode/",
    ".idea/",
    "demos/",
    "docs/images/",
]

[lib]
name = "sql_cli"
path = "src/lib.rs"

[[bin]]
name = "sql-cli"
path = "src/main.rs"

[[bin]]
name = "sql-cli-chart"
path = "src/chart_main.rs"



# Windows-specific dependencies
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["processthreadsapi", "psapi", "memoryapi"] }

[dependencies]
reedline = "0.30"
crossterm = { version = "0.28", features = ["use-dev-tty"] }
nom = "7.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dirs = "5.0"
reqwest = { version = "0.11", features = ["json", "blocking"] }
tokio = { version = "1.35", features = ["full"] }
comfy-table = "7.0"
csv = "1.3"
ratatui = "0.29"
tui-input = { version = "0.11", features = ["crossterm"] }
anyhow = "1.0"
clap = "4.0"
regex = "1.0"
fuzzy-matcher = "0.3"
chrono = { version = "0.4", features = ["serde"] }
syntect = "5.0"
arboard = "3.2"
sha2 = "0.10"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time", "local-time"] }
lazy_static = "1.4"

[dev-dependencies]
tempfile = "3.8"
criterion = "0.5"

[[bench]]
name = "where_evaluation"
harness = false

[profile.dev]
opt-level = 0       # No optimization for debugging
debug = true        # Include debug symbols
debug-assertions = true
overflow-checks = true

[profile.release]
opt-level = "z"     # Optimize for size
lto = true          # Enable Link Time Optimization
codegen-units = 1   # Reduce parallel codegen for better optimization
strip = true        # Strip symbols