Skip to main content

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
6pub mod error;
7pub mod hash;
8
9pub use error::{Error, Result};
10pub use hash::FxHasher;