cosmian_kms_server_database 5.12.1

Crate containing the database for the Cosmian KMS server and the supported stores
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod locate_query;
mod mysql;
pub(crate) use mysql::MySqlPool;
mod pgsql;
pub(crate) use pgsql::PgPool;
mod sqlite;
pub(crate) use sqlite::SqlitePool;

mod database;
mod main_store;
mod migrations;
// This must be addressed when fixing: https://github.com/Cosmian/kms/issues/379
// mod object_store;