rsvim_core/
prelude.rs

1//! Prelude.
2
3// Re-export `tracing`.
4pub use tracing::{debug, error, info, trace, warn};
5
6// Re-export `coord`.
7pub use crate::coord::*;
8pub use crate::results::*;
9
10// Re-export `ahash`;
11pub use ahash::AHashMap as HashMap;
12pub use ahash::AHashSet as HashSet;
13
14// Re-export `geo`;
15pub use geo::{self, Point, Rect};