libhmmer_sys/
lib.rs

1//! A light rust wrapper around [libhmmer](https://github.com/EddyRivasLab/hmmer) and [libeasel](https://github.com/EddyRivasLab/easel).
2
3#![allow(
4    clippy::all,
5    unused,
6    non_upper_case_globals,
7    non_camel_case_types,
8    non_snake_case,
9    deref_nullptr
10)]
11
12include!(concat!(env!("OUT_DIR"), "/hmmer.rs"));