supercluster_rs/
lib.rs

1#![doc = include_str!("../README.md")]
2
3mod builder;
4mod cluster;
5pub mod error;
6mod options;
7mod supercluster;
8mod tree;
9pub(crate) mod util;
10
11pub use builder::SuperclusterBuilder;
12pub use cluster::{ClusterData, ClusterId, ClusterInfo};
13pub use options::SuperclusterOptions;
14pub use supercluster::Supercluster;
15
16#[cfg(test)]
17pub(crate) mod test;