typed_store_error/lib.rs
1// Copyright (c) 2021, Facebook, Inc. and its affiliates
2// Copyright (c) Mysten Labs, Inc.
3// Modifications Copyright (c) 2024 IOTA Stiftung
4// SPDX-License-Identifier: Apache-2.0
5
6#![warn(
7 future_incompatible,
8 nonstandard_style,
9 rust_2018_idioms,
10 rust_2021_compatibility
11)]
12
13pub mod errors;
14
15pub use errors::TypedStoreError;
16pub type StoreError = errors::TypedStoreError;