grafeo-common 0.5.41

Common types, memory allocators, and utilities for Grafeo
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Common utilities used throughout Grafeo.
//!
//! - [`error`] - Error types like [`Error`] and [`QueryError`](error::QueryError)
//! - [`gqlstatus`] - GQLSTATUS diagnostic codes (ISO/IEC 39075:2024, sec 23)
//! - [`hash`] - Fast hashing with FxHash (non-cryptographic)
//! - [`strings`] - String utilities for suggestions and fuzzy matching

pub mod error;
pub mod gqlstatus;
pub mod hash;
pub mod strings;

pub use error::{Error, Result};
pub use gqlstatus::{DiagnosticRecord, GqlStatus};
pub use hash::FxHasher;