tabkit 0.4.1

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.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "tabkit"
version = "0.4.1"
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 = "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"