cienli/
lib.rs

1//! An Implementation of historical ciphers.
2//!
3//! **Note:** If you only need to use one or a couple of ciphers, you can disable default features and specify those features you need.
4//! For example, if you only need to use caesar cipher in your crate, you can have this in your Cargo.toml:
5//!
6//! ```toml
7//! [dependencies]
8//! cienli = { version = "0.3.1", default-features = false, features = ["caesar"]}
9//! ```
10//!
11pub mod ciphers;
12pub mod common;