[package]
edition = "2021"
rust-version = "1.87"
name = "qbix"
version = "0.0.3"
build = "build.rs"
exclude = ["/.github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Random access to BAM records by read name using a compact .qbi index"
readme = "README.md"
keywords = [
"bioinformatics",
"bam",
"htslib",
"sam",
"genomics",
]
categories = [
"command-line-utilities",
"science",
]
license = "MIT"
repository = "https://github.com/kojix2/qbix"
[lib]
name = "qbix"
crate-type = [
"rlib",
"staticlib",
"cdylib",
]
path = "src/lib.rs"
[[bin]]
name = "qbix"
path = "src/main.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "c_api"
path = "tests/c_api.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"std",
"help",
"usage",
]
default-features = false
[dependencies.memmap2]
version = "0.9.9"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]