mls_rs/storage_provider.rs
1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// Copyright by contributors to this project.
3// SPDX-License-Identifier: (Apache-2.0 OR MIT)
4
5/// Storage providers that operate completely in memory.
6pub mod in_memory;
7pub(crate) mod key_package;
8
9pub use key_package::*;
10
11#[cfg(feature = "sqlite")]
12#[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))]
13/// SQLite based storage providers.
14pub mod sqlite;