iapetus 0.0.1

Iapetus — a VM and development-flow manager. Pre-release; API not yet stable.
Documentation
//! # Iapetus
//!
//! A VM and development-flow manager.
//!
//! **This crate is a pre-release placeholder.** The real implementation is
//! in active development. Follow progress at <https://iapetus.dev> or
//! <https://github.com/demec/iapetus>.
//!
//! Named for the Titan of Greek mythology — father of Atlas and Prometheus —
//! the foundation beneath infrastructure.

/// Returns the current pre-release version marker.
///
/// This will be replaced by real APIs in a future release.
pub fn version() -> &'static str {
    env!("CARGO_PKG_VERSION")
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn version_is_set() {
        assert!(!version().is_empty());
    }
}