qdrant_edge/lib.rs
1#![allow(unexpected_cfgs)]
2#![allow(dead_code, unused_imports)]
3// #![warn(unnameable_types)] // TODO: re-enable when cleaning up the API
4pub use edge::*;
5mod blobstore;
6mod bm25;
7mod common;
8mod edge;
9mod posting_list;
10mod quantization;
11mod segment;
12mod shard;
13mod sparse;
14mod wal;