1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub mod crypto;
pub mod csv;
pub mod db;
pub mod records;
pub mod testing;
pub use records::{
default_metadata, default_secrets, key, new_tag, new_tags, secrets_from_user_pass,
DecryptedRecord, EncryptedRecord, Metadata, Secrets, Status, Tag,
};
pub fn version() -> versions::SemVer {
versions::SemVer::new(env!("CARGO_PKG_VERSION")).unwrap()
}