grafeo_common/utils/mod.rs
1//! Common utilities used throughout Grafeo.
2//!
3//! - [`error`] - Error types like [`Error`] and [`QueryError`](error::QueryError)
4//! - [`gqlstatus`] - GQLSTATUS diagnostic codes (ISO/IEC 39075:2024, sec 23)
5//! - [`hash`] - Fast hashing with FxHash (non-cryptographic)
6//! - [`strings`] - String utilities for suggestions and fuzzy matching
7
8pub mod error;
9pub mod gqlstatus;
10pub mod hash;
11pub mod strings;
12
13pub use error::{Error, Result};
14pub use gqlstatus::{DiagnosticRecord, GqlStatus};
15pub use hash::FxHasher;