iris_source/lib.rs
1//! Range oriented data sources for iris.
2//!
3//! A decoder declares the byte ranges it needs and the host serves them. That inversion is what lets the same decoder run against a local file, a page cache, and an object store.
4//!
5//! Nothing is implemented yet. See the milestone that owns this crate in
6//! `docs/ROADMAP.md`.
7
8/// The version of this crate, as reported by build metadata.
9pub const VERSION: &str = env!("CARGO_PKG_VERSION");