neighborlist_rs/
lib.rs

1pub mod api;
2pub mod batch;
3pub mod cell;
4pub mod config;
5pub mod search;
6pub mod single;
7
8pub use api::*;
9
10#[cfg(any(feature = "python", feature = "python-test"))]
11mod python_api;
12
13#[cfg(feature = "dhat-heap")]
14#[global_allocator]
15static ALLOC: dhat::Alloc = dhat::Alloc;