shadow_crypt/
lib.rs

1//! # Shadow Crypt
2//! 
3//! File encryption (placeholder - development in progress)
4//! 
5//! This package reserves the name for a file encryption tool under development.
6//! See <https://github.com/simon-amadeus/shadow> for status.
7
8#![forbid(unsafe_code)]
9
10/// Returns development status message
11pub fn status() -> &'static str {
12    "Development in progress - see repository for details"
13}