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 indexed;
26pub mod intercept;
27pub mod location;
28pub mod mem;
29pub mod metrics;
30pub mod postgres;
31pub mod retry;
32pub mod s3;
33pub mod unreliable;
34pub mod workload;