xisf-header 0.3.3

Read and write XISF image-file headers: extract FITS keywords and CRUD the XISF header container. Header-only (never touches pixel data).
Documentation
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]

mod error;
mod header;
mod key;
mod keyword;
mod property;
mod reader;
mod splice;
mod value;
mod writer;

pub use error::{Error, Result};
pub use header::{Header, StructuralHints};
pub use key::Key;
pub use keyword::FitsKeyword;
pub use property::Property;
pub use value::{Fixed, FromField, IntoValue, Literal, Sci, Value};

/// Re-export of [`time`], whose types appear in this crate's public API.
pub use time;

#[doc = include_str!("../docs/guide.md")]
pub mod guide {}