//! # Verso-Tile
//!
//! Tile-rendering-surface management for the
//! [`mere`](https://crates.io/crates/mere) browser. *Verso* is the brand-level
//! name (Latin *verso*: the back side of a printed leaf, the page that catches
//! the impression); `verso-tile` is the crate that owns the rendering surfaces
//! themselves — receiving output from engines (via the
//! [`inker`](https://crates.io/crates/inker) controller) and placing those
//! renderings into tile slots in the GraphTree.
//!
//! In the printing-press metaphor that organizes Mere's architecture:
//! engines produce ink, the inker pairs each ink to its content, the
//! [`platen`](https://crates.io/crates/platen) presses the inked content,
//! and `verso-tile` is the surface that receives the impression.
//!
//! ## Status
//!
//! Pre-1.0. This 0.0.x release reserves the crate name and documents intent;
//! implementation is in progress within the
//! [Mere workspace](https://crates.io/crates/mere).
/// Crate version.
pub const VERSION: &str = env!;
/// Lifecycle stage marker.
pub const STAGE: &str = "pre-alpha";