[package]
edition = "2021"
name = "twinleaf"
version = "1.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library for working with the Twinleaf I/O protocol and Twinleaf quantum sensors."
homepage = "https://twinleaf.com"
readme = "README.md"
license = "MIT"
repository = "https://github.com/twinleaf/twinleaf-rust"
[features]
default = []
hdf5 = ["dep:hdf5"]
[lib]
name = "twinleaf"
path = "src/lib.rs"
[[test]]
name = "buffer"
path = "tests/buffer.rs"
[[test]]
name = "filter"
path = "tests/filter.rs"
[dependencies.crc]
version = "3.2"
[dependencies.crossbeam]
version = "0.8"
[dependencies.directories]
version = "6.0"
[dependencies.glob]
version = "0.3"
[dependencies.hdf5]
version = "0.12"
features = [
"static",
"zlib",
"blosc",
]
optional = true
package = "hdf5-metno"
[dependencies.mio]
version = "1.0"
features = [
"os-poll",
"net",
]
[dependencies.mio-serial]
version = "5.0"
[dependencies.num_enum]
version = "0.7"
[dependencies.serialport]
version = "4.9"
[dependencies.thiserror]
version = "2"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6"
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.61"
features = [
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_Devices_Communication",
"Win32_System_Power",
]