sqry-core 6.0.18

Core library for sqry - semantic code search engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Indexing utilities shared across graph builders and caches.
//!
//! Provides incremental hashing and index compression helpers that are
//! independent of any legacy symbol-based workflows.

pub mod compression;
pub mod incremental;

pub use compression::{
    CompressedIndex, CompressionError, CompressionFormat, DEFAULT_COMPRESSION_LEVEL,
};
pub use incremental::{FileHash, HashIndex};