[package]
version = "1.1.1"
name = "bed-reader"
description = "Read and write the PLINK BED format, simply and efficiently."
repository = "https://github.com/fastlmm/bed-reader"
readme = "README-rust.md"
documentation = "https://docs.rs/bed-reader/latest/bed_reader/"
authors = ["FaST-LMM Team <fastlmm-dev@python.org>"]
license = "Apache-2.0"
keywords = ["bioinformatics", "plink", "genomics", "genotype", "snps"]
categories = ["science"]
edition = "2021"
homepage = "https://fastlmm.github.io/"
exclude = [
"**/tests/data/*",
"doc/build/*",
"docs/*",
"_static/*",
"target/*",
"**/target/debug/*",
"**/_static/fonts/*",
"**/_static/css/*",
]
[lib]
name = "bed_reader"
crate-type = ["cdylib", "rlib"]
[features]
default = ["tokio"]
tokio = ["dep:tokio"]
extension-module = ["pyo3/extension-module", "tokio"]
[dependencies]
thiserror = "1.0.66"
num-traits = "0.2.19"
ndarray-npy = { version = "0.9.1", default-features = false }
rayon = "1.10.0"
numpy = "0.28.0"
ndarray = { version = "0.16.1", features = ["approx", "rayon"] }
statrs = "0.17.1"
byteorder = { version = "1.5.0", default-features = false }
dpc-pariter = "0.4.0"
derive_builder = "0.20.2"
anyinput = { version = "0.1.8", features = ["ndarray"] }
fetch-data = "0.2.0"
futures-util = { version = "0.3.31" }
bytecount = { version = "0.6.8" }
itertools = { version = "0.13.0" }
bytes = { version = "1.11.1" }
cloud-file = { version = "0.2.0" }
pyo3 = { version = "0.28.3", features = ["extension-module"], optional = true }
tokio = { version = "1.42.1", features = ["full"], optional = true }
[dev-dependencies]
ndarray-rand = "0.15.0"
anyhow = "1.0.92"
rusoto_credential = "0.48.0"
temp_testdir = "0.2.3"
thousands = "0.2.0"
[build-dependencies]
pyo3-build-config = "0.28.3"