[dependencies.byteorder]
version = "1.2.3"
[dependencies.bytes]
version = "1.0.1"
[dependencies.crossbeam-channel]
version = "0.5.6"
[dependencies.flate2]
version = "1.0.1"
[dependencies.futures]
default-features = false
features = ["std"]
optional = true
version = "0.3.15"
[dependencies.libdeflater]
optional = true
version = "1.19.0"
[dependencies.pin-project-lite]
optional = true
version = "0.2.6"
[dependencies.tokio]
features = ["fs", "io-util", "rt"]
optional = true
version = "1.10.0"
[dependencies.tokio-util]
features = ["codec"]
optional = true
version = "0.7.0"
[dev-dependencies.tokio]
features = ["io-std", "macros", "rt-multi-thread"]
version = "1.10.0"
[[example]]
name = "bgzf_read"
path = "examples/bgzf_read.rs"
[[example]]
name = "bgzf_read_async"
path = "examples/bgzf_read_async.rs"
required-features = ["async"]
[[example]]
name = "bgzf_read_multithreaded"
path = "examples/bgzf_read_multithreaded.rs"
[[example]]
name = "bgzf_seek_uncompressed"
path = "examples/bgzf_seek_uncompressed.rs"
[[example]]
name = "bgzf_write"
path = "examples/bgzf_write.rs"
[[example]]
name = "bgzf_write_async"
path = "examples/bgzf_write_async.rs"
required-features = ["async"]
[[example]]
name = "bgzf_write_multithreaded"
path = "examples/bgzf_write_multithreaded.rs"
[features]
async = ["dep:futures", "dep:pin-project-lite", "dep:tokio", "dep:tokio-util"]
libdeflate = ["dep:libdeflater"]
[lib]
name = "noodles_bgzf"
path = "src/lib.rs"
[package]
authors = ["Michael Macias <zaeleus@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Blocked gzip format (BGZF) reader and writer"
documentation = "https://docs.rs/noodles-bgzf"
edition = "2021"
homepage = "https://github.com/zaeleus/noodles"
license = "MIT"
name = "noodles-bgzf"
readme = false
repository = "https://github.com/zaeleus/noodles"
rust-version = "1.70.0"
version = "0.33.0"
[package.metadata.docs.rs]
features = ["async"]