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. 6 pub mod in_memory; 7 pub(crate) mod key_package; 8 9 pub use key_package::*; 10 11 #[cfg(feature = "sqlite")] 12 #[cfg_attr(docsrs, doc(cfg(feature = "sqlite")))] 13 /// SQLite based storage providers. 14 pub mod sqlite; 15