fitsio-pure 0.9.2

Pure Rust FITS file reader and writer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod errors;
pub mod fitsfile;
pub mod hdu;
pub mod headers;
pub mod images;
#[cfg(feature = "array")]
pub mod ndarray_compat;
pub mod tables;

#[cfg(test)]
mod tests {
    #[test]
    fn reexports_core() {
        assert_eq!(crate::BLOCK_SIZE, 2880);
    }
}