[package]
edition = "2024"
rust-version = "1.87"
name = "rapidgzip-core"
version = "0.2.1"
authors = ["rapidgzip-rust contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parallel gzip, zlib, and raw-DEFLATE decoder using rapidgzip's marker/window algorithm"
documentation = "https://docs.rs/rapidgzip-core"
readme = "README.md"
keywords = [
"gzip",
"deflate",
"parallel",
"zlib",
"bgzf",
]
categories = [
"compression",
"filesystem",
]
license = "BSD-3-Clause AND MIT"
repository = "https://github.com/COMBINE-lab/rapidgzip-rust"
[lib]
name = "rapidgzip_core"
path = "src/lib.rs"
[[test]]
name = "analyze"
path = "tests/analyze.rs"
[[test]]
name = "decode"
path = "tests/decode.rs"
[[test]]
name = "index_formats"
path = "tests/index_formats.rs"
[[test]]
name = "index_interop"
path = "tests/index_interop.rs"
[[test]]
name = "indexed_parallel"
path = "tests/indexed_parallel.rs"
[[test]]
name = "indexed_seek"
path = "tests/indexed_seek.rs"
[[test]]
name = "line_count"
path = "tests/line_count.rs"
[[test]]
name = "multi_format"
path = "tests/multi_format.rs"
[dependencies.crossbeam-deque]
version = "0.8.7"
[dependencies.libz-rs-sys]
version = "0.6.6"
[dev-dependencies.libz-rs-sys]
version = "0.6.6"
[dev-dependencies.paraseq]
version = "0.4.14"
default-features = false
[dev-dependencies.proptest]
version = "1.11.0"
[lints.clippy]
undocumented_unsafe_blocks = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_op_in_unsafe_fn = "deny"