keepass-ng 0.10.6

KeePass .kdbx database file parser with ehancements
Documentation
#![doc = include_str!("../README.md")]
#![recursion_limit = "1024"]

mod compression;
pub(crate) mod config;
pub(crate) mod crypt;
pub mod db;
pub(crate) mod error;
pub(crate) mod format;
mod key;

#[cfg(feature = "challenge_response")]
pub use self::key::ChallengeResponseKey;
pub use self::{
    config::DatabaseConfig,
    error::{BoxError, DatabaseIntegrityError, DatabaseKeyError, DatabaseOpenError, Error, Result},
    key::DatabaseKey,
};
pub use chrono::NaiveDateTime;
pub use uuid::Uuid;