fits-io 0.1.0

A pure-Rust FITS file handling library inspired by CFITSIO, focused on safety, clarity, and performance.
Documentation
1
2
3
4
5
6
7
8
9
mod read_bytes;
mod read_seek;

#[cfg(feature = "tokio")]
mod read_bytes_async;

pub(crate) use self::read_bytes::read_bytes;
pub(crate) use self::read_bytes_async::read_bytes_async;
pub(crate) use self::read_seek::ReadSeek;