1#![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;