[package]
edition = "2021"
rust-version = "1.85"
name = "opentimstdf"
version = "1.0.6"
authors = ["Nathan Riley <git@nathanriley.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust reader for timsTOF .d/ (TDF) mass spectrometry bundles."
homepage = "https://github.com/Sigilweaver/OpenTimsTDF"
readme = "README.md"
keywords = [
"mass-spectrometry",
"bruker",
"timstof",
"tdf",
"proteomics",
]
categories = [
"parser-implementations",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/Sigilweaver/OpenTimsTDF"
[lib]
name = "opentimstdf"
path = "src/lib.rs"
[[example]]
name = "dump"
path = "examples/dump.rs"
[[example]]
name = "to_mzml"
path = "examples/to_mzml.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.openproteo-core]
version = "1.0.0"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.thiserror]
version = "2"
[dependencies.zstd]
version = "0.13"
[lints.rust]
unsafe_code = "forbid"