noodles_tabix/
async.rs

1//! Async tabix.
2
3pub mod fs;
4pub mod io;
5
6#[deprecated(since = "0.48.0", note = "Use `tabix::r#async::fs::read` instead.")]
7pub use self::fs::read;
8
9#[deprecated(since = "0.48.0", note = "Use `tabix::r#async::fs::write` instead.")]
10pub use self::fs::write;
11
12#[deprecated(
13    since = "0.45.0",
14    note = "Use `noodles_tabix::r#async::io::Reader` instead."
15)]
16pub use self::io::Reader;
17
18#[deprecated(
19    since = "0.45.0",
20    note = "Use `noodles_tabix::r#async::io::Reader` instead."
21)]
22pub use self::io::Writer;