tabiew 0.8.1

A lightweight TUI application to view and query tabular data files, such as CSV, TSV, and parquet.
[[bin]]
name = "tw"
path = "src/main.rs"

[build-dependencies.clap]
features = ["derive"]
version = "4.5.4"

[build-dependencies.clap_complete]
version = "4.5.40"

[build-dependencies.clap_mangen]
version = "0.2.24"

[dependencies.anyhow]
version = "1.0.95"

[dependencies.clap]
features = ["derive"]
version = "4.5.23"

[dependencies.crossterm]
features = ["use-dev-tty"]
version = "0.28.1"

[dependencies.fuzzy-matcher]
version = "0.3.7"

[dependencies.fwf-rs]
version = "0.2.0"

[dependencies.itertools]
version = "0.14.0"

[dependencies.polars]
features = ["dtype-decimal", "lazy", "polars-sql", "polars-io", "parquet", "json", "ipc", "dtype-categorical"]
version = "0.45.1"

[dependencies.polars-lazy]
version = "0.45.1"

[dependencies.polars-sql]
version = "0.45.1"

[dependencies.rand]
version = "0.8.5"

[dependencies.ratatui]
version = "0.29.0"

[dependencies.rayon]
version = "1.10.0"

[dependencies.regex]
version = "1.11.1"

[dependencies.rusqlite]
features = ["bundled"]
version = "0.32.1"

[dependencies.tempfile]
version = "3.14.0"

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

[package]
authors = ["Shayan Hashemi <shshemi@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
description = "A lightweight TUI application to view and query tabular data files, such as CSV, TSV, and parquet."
documentation = "https://docs.rs/tabiew"
edition = "2021"
homepage = "https://github.com/shshemi/tabiew"
license = "MIT"
name = "tabiew"
readme = "README.md"
repository = "https://github.com/shshemi/tabiew"
version = "0.8.1"

[package.metadata.deb]
assets = [["target/release/tw", "/usr/bin/tw", "0755"], ["target/manual/tabiew.1", "/usr/share/man/man1/tw.1", "0644"], ["target/manual/tabiew.1", "/usr/share/man/man1/tabiew.1", "0644"], ["target/completion/tw.bash", "/usr/share/bash-completion/completions/tw.bash", "0644"], ["target/completion/_tw", "/usr/share/zsh/vendor-completions/_tw", "0644"], ["target/completion/tw.fish", "/usr/share/fish/completions/tw.fish", "0644"]]
depends = "$auto"
extended-description = """
Tabiew is a lightweight, terminal-based application to view and query delimiter separated value formatted documents, such as CSV and TSV files.
"""
license-file = ["LICENSE", "4"]
priority = "optional"
section = "utils"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/bin/tw"
mode = "755"
source = "target/release/tw"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/share/man/man1/tw.1"
mode = "0644"
source = "target/manual/tabiew.1"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/share/man/man1/tabiew.1"
mode = "0644"
source = "target/manual/tabiew.1"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/share/bash-completion/completions/tw.bash"
mode = "0644"
source = "target/completion/tw.bash"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/share/zsh/vendor-completions/_tw"
mode = "0644"
source = "target/completion/_tw"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/share/fish/completions/tw.fish"
mode = "0644"
source = "target/completion/tw.fish"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = true