[package]
edition = "2021"
name = "tuitab"
version = "0.7.0"
authors = ["denisotree"]
build = false
exclude = [
"packaging/",
".github/",
"docs/",
".githooks/",
".claude/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal tabular data explorer — CSV/JSON/YAML/TOML/Parquet/Excel/SQLite viewer with filtering, sorting, pivot tables, and charts"
homepage = "https://github.com/denisotree/tuitab"
documentation = "https://docs.rs/tuitab"
readme = "README.md"
keywords = [
"tui",
"csv",
"data",
"terminal",
"tabular",
]
categories = [
"command-line-utilities",
"visualization",
]
license = "Apache-2.0"
repository = "https://github.com/denisotree/tuitab"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
bundled-duckdb = ["duckdb/bundled"]
default = ["bundled-duckdb"]
[lib]
name = "tuitab"
path = "src/lib.rs"
[[bin]]
name = "ttab"
path = "src/bin/ttab.rs"
[[bin]]
name = "ttb"
path = "src/bin/ttb.rs"
[[bin]]
name = "tuitab"
path = "src/main.rs"
[[test]]
name = "data_tests"
path = "tests/data_tests.rs"
[[test]]
name = "dedup_tests"
path = "tests/dedup_tests.rs"
[[test]]
name = "describe_tests"
path = "tests/describe_tests.rs"
[[test]]
name = "doc_bench"
path = "tests/doc_bench.rs"
[[test]]
name = "doc_formats"
path = "tests/doc_formats.rs"
[[test]]
name = "filter_tests"
path = "tests/filter_tests.rs"
[[test]]
name = "freq_sort_test"
path = "tests/freq_sort_test.rs"
[[test]]
name = "frequency_tests"
path = "tests/frequency_tests.rs"
[[test]]
name = "group_tests"
path = "tests/group_tests.rs"
[[test]]
name = "key_layer_tests"
path = "tests/key_layer_tests.rs"
[[test]]
name = "mcp_tests"
path = "tests/mcp_tests.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "polars_perf_tests"
path = "tests/polars_perf_tests.rs"
[[test]]
name = "regex_column_names"
path = "tests/regex_column_names.rs"
[[test]]
name = "render_tests"
path = "tests/render_tests.rs"
[[test]]
name = "sort_tests"
path = "tests/sort_tests.rs"
[[test]]
name = "transpose_tests"
path = "tests/transpose_tests.rs"
[[test]]
name = "window_tests"
path = "tests/window_tests.rs"
[dependencies.arboard]
version = "3"
default-features = false
[dependencies.bincode]
version = "1"
[dependencies.calamine]
version = "0.36"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.color-eyre]
version = "0.6"
[dependencies.crossterm]
version = "0.28"
[dependencies.csv]
version = "1.3"
[dependencies.duckdb]
version = "1"
[dependencies.indexmap]
version = "2.14.0"
[dependencies.jaq-core]
version = "3.1.0"
[dependencies.jaq-json]
version = "2.0.1"
[dependencies.jaq-std]
version = "3.0.1"
[dependencies.libc]
version = "0.2"
[dependencies.polars]
version = "0.53"
features = [
"csv",
"lazy",
"dtype-date",
"dtype-datetime",
"strings",
"parquet",
"serde",
"pivot",
"is_in",
"regex",
"rank",
"cum_agg",
]
default-features = false
[dependencies.rand]
version = "0.10"
[dependencies.ratatui]
version = "0.30"
[dependencies.regex]
version = "1"
[dependencies.rusqlite]
version = "0.40"
features = ["bundled"]
[dependencies.rust_xlsxwriter]
version = "0.96"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.serde_yaml_ng]
version = "0.10.0"
[dependencies.tempfile]
version = "3"
[dependencies.toml_edit]
version = "0.25.13"
[dependencies.unicode-width]
version = "0.2"
[profile.dev]
debug = 1
incremental = true
[profile.dev.package.libduckdb-sys]
debug = 0
[profile.dev.package."*"]
opt-level = 2
[profile.release]
opt-level = 3
lto = "thin"
strip = "symbols"