From af2f84eb0411507f8866b3cc05e9a6ba9d81d172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20K=C3=B6ster?= Date: Tue, 6 Jul 2021 21:34:15 +0200 Subject: [PATCH] fix: dummy release --- hts-sys/src/lib.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hts-sys/src/lib.rs b/hts-sys/src/lib.rs index b726e8798..a96345dd2 100644 --- a/hts-sys/src/lib.rs +++ b/hts-sys/src/lib.rs @@ -3,9 +3,10 @@ #![allow(non_snake_case)] #![allow(clippy::all)] #![allow(improper_ctypes)] -//! This module exposes the raw [HTSlib](https://github.com/samtools/htslib) bindings. -//! Instead of using this crate directly, it is recommended to use [rust-htslib](https://docs.rs/rust-htslib) instead, -//! which has a more idiomatic and high-level API and builds on top of this crate. +//! This module exposes the raw [HTSlib](https://github.com/samtools/htslib) bindings for reading and writing +//! genomics file formats like SAM, BAM, CRAM, VCF, BCF. +//! Instead of using this crate directly, it is recommended to use [rust-htslib](https://docs.rs/rust-htslib) +//! instead, which has a more idiomatic and high-level API and builds on top of this crate. #[cfg(feature = "bzip2")] extern crate bzip2_sys;