21 lines
488 B
Rust
21 lines
488 B
Rust
#![forbid(unsafe_code)]
|
|
#![deny(clippy::disallowed_types)]
|
|
|
|
//! Password-store repository behavior shared by every IronStorage frontend.
|
|
//!
|
|
//! This crate is the sole owner of stored and derived password-store objects.
|
|
|
|
pub mod command;
|
|
pub mod config;
|
|
pub mod crypto;
|
|
pub mod generate;
|
|
pub mod git;
|
|
pub mod mutation;
|
|
pub mod read;
|
|
pub mod recipient;
|
|
pub mod repository;
|
|
pub mod write;
|
|
|
|
/// Product name shared by the presentation adapters.
|
|
pub const PRODUCT_NAME: &str = "IronStorage";
|