[package]
edition = "2021"
rust-version = "1.85"
name = "tabkit"
version = "0.4.3"
authors = ["tabkit contributors"]
build = false
exclude = [
"/.github",
"/tests/fixtures/large/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tabular files → schema + sample rows. The shared spreadsheet reader Tauri / Iced / native desktop apps reach for when they need to introspect XLSX / CSV / TSV without inventing the same calamine-plus-type-inference glue twice."
homepage = "https://github.com/seryai/tabkit"
documentation = "https://docs.rs/tabkit"
readme = "README.md"
keywords = [
"xlsx",
"csv",
"spreadsheet",
"schema",
"tabular",
]
categories = [
"parser-implementations",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/seryai/tabkit"
[features]
calamine = ["dep:calamine"]
csv = ["dep:csv"]
default = [
"calamine",
"csv",
]
full = [
"calamine",
"csv",
"parquet",
]
parquet = ["dep:parquet"]
[lib]
name = "tabkit"
path = "src/lib.rs"
[[example]]
name = "custom_reader"
path = "examples/custom_reader.rs"
[[example]]
name = "inspect"
path = "examples/inspect.rs"
[dependencies.calamine]
version = "0.34"
optional = true
[dependencies.csv]
version = "1"
optional = true
[dependencies.parquet]
version = "56"
optional = true
default-features = false
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"