[package]
name = "packed-seq"
version = "4.4.2"
edition = "2021"
license = "MIT"
repository = "https://github.com/rust-seq/packed-seq"
keywords = ["packed", "simd", "dna", "bioinformatics"]
categories = ["compression", "data-structures", "science::bioinformatics"]
authors = ["Ragnar Groot Koerkamp", "Igor Martayan"]
description = "Constructing and iterating packed DNA sequences using SIMD"
[dependencies]
wide = "0.7"
mem_dbg = "0.3"
cfg-if = "1.0"
ensure_simd = "0.1.0"
rand = { version = "0.9", features = ["small_rng"], optional = true }
epserde = { version = "0.8", optional = true }
pyo3 = { version = "0.25", features = ["extension-module"], optional = true }
sux = { version = "0.10.2", optional = true }
needletail = { version = "0.6.3", optional = true }
[features]
default = ["rand"]
file_io = ["needletail"]
ef_seq = ["sux"]
scalar = ["ensure_simd/scalar"]
[package.metadata.docs.rs]
features = ['rand', 'file_io', 'ef_seq']