[package]
edition = "2024"
name = "tedium"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast and easy TDMS Library for Rust"
homepage = "https://github.com/WiresmithTech/tedium"
readme = "README.md"
keywords = [
"labview",
"ni",
"tdms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/WiresmithTech/tedium"
[features]
chrono = [
"dep:chrono",
"labview-interop/chrono",
]
default = []
[lib]
name = "tedium"
path = "src/lib.rs"
[[example]]
name = "benchmarking"
path = "examples/benchmarking.rs"
[[test]]
name = "memory_buffers"
path = "tests/memory_buffers.rs"
[[test]]
name = "read_properties"
path = "tests/read_properties.rs"
[[test]]
name = "read_structure"
path = "tests/read_structure.rs"
[[test]]
name = "read_with_offset"
path = "tests/read_with_offset.rs"
[[test]]
name = "write_properties"
path = "tests/write_properties.rs"
[[test]]
name = "write_structure"
path = "tests/write_structure.rs"
[[bench]]
name = "contiguous_reader"
path = "benches/contiguous_reader.rs"
[[bench]]
name = "interleaved_reader"
path = "benches/interleaved_reader.rs"
[[bench]]
name = "tedium_benchmark"
path = "benches/tedium_benchmark.rs"
harness = false
[[bench]]
name = "writers"
path = "benches/writers.rs"
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.labview-interop]
version = "0.4"
[dependencies.num-derive]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.paste]
version = "1.0"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.8"