krypt_platform/lib.rs
1//! `krypt-platform` — cross-platform OS abstractions.
2//!
3//! cfg-gated modules per OS keep the noise out of `krypt-core`. Symlink
4//! capability detection, notification backends, native path resolution.
5//!
6//! Current state: scaffolding.
7
8#![forbid(unsafe_code)]
9#![warn(missing_docs)]
10
11/// Crate version, exposed for `krypt --version` aggregation.
12pub const VERSION: &str = env!("CARGO_PKG_VERSION");