Skip to main content

graphos_common/utils/
mod.rs

1//! Utility functions and helpers.
2//!
3//! This module provides common utilities used throughout Graphos:
4//!
5//! - [`error`] - Error types and result aliases
6//! - [`hash`] - Fast hashing utilities
7
8pub mod error;
9pub mod hash;
10
11pub use error::{Error, Result};
12pub use hash::FxHasher;