[package]
edition = "2024"
name = "tauq"
version = "0.2.0"
authors = ["Tauq Contributors"]
build = false
include = [
"/src/**/*",
"/tests/**/*",
"/benches/**/*",
"/include/tauq.h",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
"!**/.DS_Store",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Token-efficient data notation - 49% fewer tokens than JSON (verified with tiktoken)"
homepage = "https://www.tauq.org"
documentation = "https://docs.rs/tauq"
readme = "README.md"
keywords = [
"serialization",
"parser",
"llm",
"token-efficient",
"data-format",
]
categories = [
"encoding",
"parser-implementations",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/epistates/tauq"
[features]
default = [
"rhai",
"performance",
]
iceberg = [
"dep:iceberg",
"dep:arrow-array",
"dep:arrow-schema",
"dep:futures",
"dep:tokio",
"dep:bytes",
]
java-bindings = ["jni"]
lsp = [
"tower-lsp",
"dep:tokio",
]
performance = ["dep:rayon"]
python-bindings = ["pyo3"]
[lib]
name = "tauq"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "tauq"
path = "src/bin/tauq.rs"
[[bin]]
name = "tauq-lsp"
path = "src/bin/tauq-lsp.rs"
required-features = ["lsp"]
[[test]]
name = "auto_use_test"
path = "tests/auto_use_test.rs"
[[test]]
name = "benchmark_validation_test"
path = "tests/benchmark_validation_test.rs"
[[test]]
name = "codec_selection_validation"
path = "tests/codec_selection_validation.rs"
[[test]]
name = "format_roundtrip_test"
path = "tests/format_roundtrip_test.rs"
[[test]]
name = "generic_object_test"
path = "tests/generic_object_test.rs"
[[test]]
name = "implicit_row_test"
path = "tests/implicit_row_test.rs"
[[test]]
name = "named_args_test"
path = "tests/named_args_test.rs"
[[test]]
name = "production_edge_cases"
path = "tests/production_edge_cases.rs"
[[test]]
name = "schema_block_test"
path = "tests/schema_block_test.rs"
[[test]]
name = "string_escape_test"
path = "tests/string_escape_test.rs"
[[test]]
name = "tauq_comprehensive_test"
path = "tests/tauq_comprehensive_test.rs"
[[test]]
name = "tauq_list_test"
path = "tests/tauq_list_test.rs"
[[test]]
name = "tauq_minified_test"
path = "tests/tauq_minified_test.rs"
[[test]]
name = "tauq_test"
path = "tests/tauq_test.rs"
[[test]]
name = "tauqq_builtin_test"
path = "tests/tauqq_builtin_test.rs"
[[test]]
name = "tauqq_json_test"
path = "tests/tauqq_json_test.rs"
[[test]]
name = "tauqq_quotes_test"
path = "tests/tauqq_quotes_test.rs"
[[test]]
name = "tauqq_test"
path = "tests/tauqq_test.rs"
[[test]]
name = "tbf_compression_validation"
path = "tests/tbf_compression_validation.rs"
[[bench]]
name = "binary_format_benchmark"
path = "benches/binary_format_benchmark.rs"
[[bench]]
name = "codec_benchmark"
path = "benches/codec_benchmark.rs"
harness = false
[[bench]]
name = "compression_real_data"
path = "benches/compression_real_data.rs"
harness = false
[[bench]]
name = "dataset_geospatial"
path = "benches/dataset_geospatial.rs"
[[bench]]
name = "dataset_logs"
path = "benches/dataset_logs.rs"
[[bench]]
name = "dataset_metrics"
path = "benches/dataset_metrics.rs"
[[bench]]
name = "dataset_transactions"
path = "benches/dataset_transactions.rs"
[[bench]]
name = "tauq_benchmarks"
path = "benches/tauq_benchmarks.rs"
harness = false
[[bench]]
name = "tbf_benchmark"
path = "benches/tbf_benchmark.rs"
harness = false
[dependencies.ahash]
version = "=0.8.12"
[dependencies.arrow-array]
version = "58.0"
optional = true
[dependencies.arrow-schema]
version = "58.0"
optional = true
[dependencies.bytes]
version = "1.11"
optional = true
[dependencies.futures]
version = "0.3"
optional = true
[dependencies.iceberg]
version = "0.8"
optional = true
[dependencies.jni]
version = "0.22"
optional = true
[dependencies.once_cell]
version = "1.21"
[dependencies.pyo3]
version = "0.28"
features = ["extension-module"]
optional = true
[dependencies.rayon]
version = "1.11"
optional = true
[dependencies.rhai]
version = "1.24"
features = ["serde"]
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.tempfile]
version = "3.27"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.50"
features = ["full"]
optional = true
[dependencies.tower-lsp]
version = "0.20.0"
optional = true
[dev-dependencies.bincode]
version = "2.0"
features = ["serde"]
[dev-dependencies.bitcode]
version = "0.6"
features = ["serde"]
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.postcard]
version = "1.1"
features = ["alloc"]
[dev-dependencies.rand]
version = "0.10"
[dev-dependencies.rmp-serde]
version = "1.3"
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies.getrandom]
version = "0.4"
features = ["wasm_js"]