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)
56pub mod error;
7pub mod hash;
89pub use error::{Error, Result};
10pub use hash::FxHasher;