indra_db 0.1.10

A content-addressed graph database for versioned thoughts
Documentation
1
2
3
4
5
6
7
8
9
10
//! Content-addressed object store
//!
//! This module implements the core storage layer using content-addressed blobs.
//! Objects are stored by their BLAKE3 hash and compressed with zstd.

mod blob;
mod file_store;

pub use blob::{Blob, BlobType};
pub use file_store::ObjectStore;