graphlite 0.0.1

GraphLite - A lightweight ISO GQL Graph Database
Documentation
// Copyright (c) 2024-2025 DeepGraph Inc.
// SPDX-License-Identifier: Apache-2.0
//
//! Graph indexing system for GraphLite
//!
//! This module provides indexing support for:
//! - Graph indexes (adjacency lists, paths, reachability)
//!
//! All indexes are designed to be partition-aware for future distribution.

pub mod errors;
pub mod manager;
pub mod metrics;
pub mod traits;
pub mod types;

// Re-export core types
pub use errors::*;
pub use manager::*;
pub use types::*;