fits-io 0.2.0

A pure-Rust FITS file reading and writing library inspired by CFITSIO, focused on safety, clarity, and performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "fs")]
mod read_bytes;
mod read_seek;

// Only the filesystem readers stream bytes; the in-memory ones already have
// them all.
#[cfg(all(feature = "tokio", feature = "fs"))]
mod read_bytes_async;

#[cfg(feature = "fs")]
pub(crate) use self::read_bytes::read_bytes;
#[cfg(all(feature = "tokio", feature = "fs"))]
pub(crate) use self::read_bytes_async::read_bytes_async;
pub(crate) use self::read_seek::{ReadSeek, SharedBytes};