indra_db 0.1.10

A content-addressed graph database for versioned thoughts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Merkle trie for structural sharing of graph state
//!
//! This implements a content-addressed trie where:
//! - Each node's hash is derived from its children's hashes
//! - Unchanged subtrees share storage across commits
//! - The root hash uniquely identifies the entire graph state

mod node;
mod tree;

pub use node::TrieNode;
pub use tree::MerkleTrie;