grafeo_common/utils/mod.rs
1//! Common utilities used throughout Grafeo.
2//!
3//! - [`error`] - Error types like [`Error`] and [`QueryError`](error::QueryError)
4//! - [`hash`] - Fast hashing with FxHash (non-cryptographic)
5//! - [`strings`] - String utilities for suggestions and fuzzy matching
6
7pub mod error;
8pub mod hash;
9pub mod strings;
10
11pub use error::{Error, Result};
12pub use hash::FxHasher;