From 9c6db3060818692070db1411d63e113dc7effd64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20K=C3=B6ster?= Date: Tue, 6 Jul 2021 21:06:15 +0200 Subject: [PATCH] fix!: bump to new major version (for technical reasons). --- hts-sys/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hts-sys/src/lib.rs b/hts-sys/src/lib.rs index 8573f0f1e..1f3766a58 100644 --- a/hts-sys/src/lib.rs +++ b/hts-sys/src/lib.rs @@ -4,6 +4,8 @@ #![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 hts-sys. #[cfg(feature = "bzip2")] extern crate bzip2_sys;