libvault 0.2.2

the libvault is modified from RustyVault
Documentation
1
2
3
4
5
6
//! This module includes storage backends for all SQL types. Currently supported: SQLite, PostgreSQL.

#[cfg(feature = "storage_pg")]
pub mod postgresql;
#[cfg(feature = "storage_sqlite")]
pub mod sqlite;