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;
24pub mod generated;
25pub mod hedge;
26pub mod indexed;
27pub mod intercept;
28pub mod location;
29pub mod mem;
30pub mod metrics;
31pub mod postgres;
32pub mod retry;
33pub mod s3;
34#[cfg(feature = "turmoil")]
35pub mod turmoil;
36pub mod unreliable;
37pub mod workload;