1//! A stub for a Rust crate for BED file manipulation
2//!
34#![warn(rust_2021_compatibility)]
5#![warn(rust_2018_idioms)]
67pub mod extract;
8pub mod merge;
9pub mod structs;
1011pub use crate::extract::*;
12pub use crate::merge::*;
13pub use crate::structs::*;