Skip to main content

mz_persist/
lib.rs

1// Copyright Materialize, Inc. and contributors. All rights reserved.
2//
3// Use of this software is governed by the Business Source License
4// included in the LICENSE file.
5//
6// As of the Change Date specified in that file, in accordance with
7// the Business Source License, use of this software will be governed
8// by the Apache License, Version 2.0.
9
10//! Persistence for differential dataflow collections
11
12#![warn(missing_docs, missing_debug_implementations)]
13#![warn(
14    clippy::cast_possible_truncation,
15    clippy::cast_precision_loss,
16    clippy::cast_sign_loss,
17    clippy::clone_on_ref_ptr
18)]
19
20pub mod azure;
21pub mod cfg;
22pub mod error;
23pub mod file;
24#[cfg(any(feature = "foundationdb", target_os = "linux"))]
25pub mod foundationdb;
26pub mod generated;
27pub mod indexed;
28pub mod intercept;
29pub mod location;
30pub mod mem;
31pub mod metrics;
32pub mod postgres;
33pub mod retry;
34pub mod s3;
35#[cfg(feature = "turmoil")]
36pub mod turmoil;
37pub mod unreliable;
38pub mod workload;