krypt_core/lib.rs
1//! `krypt-core` — the engine.
2//!
3//! Everything that does real work lives here, behind a stable Rust API.
4//! The `krypt` binary (in `krypt-cli`) is a thin shell around this crate.
5//!
6//! Current state: scaffolding. Real modules land in Phase 1 (see issues
7//! #9–#22 in the upstream repo).
8
9#![forbid(unsafe_code)]
10#![warn(missing_docs)]
11
12/// Crate version, exposed for `krypt --version` aggregation.
13pub const VERSION: &str = env!("CARGO_PKG_VERSION");