Skip to main content

diskann_providers/
lib.rs

1/*
2 * Copyright (c) Microsoft Corporation.
3 * Licensed under the MIT license.
4 */
5#![cfg_attr(
6    not(test),
7    warn(clippy::panic, clippy::unwrap_used, clippy::expect_used)
8)]
9#![cfg_attr(test, allow(clippy::unused_io_amount))]
10
11pub mod utils;
12
13pub mod model;
14
15pub mod common;
16
17pub mod index;
18
19pub mod storage;
20
21#[cfg(any(test, feature = "testing"))]
22pub mod test_utils;