- Add Hybrid Logical Clock (HLC) for causality tracking across nodes - Implement Merkle tree for efficient diff/sync with BLAKE3 hashing - Add CRDT-aware stores for assertions and votes with vector clocks - Create stemedb-sync crate with anti-entropy and gossip protocols - Add stemedb-rpc crate with gRPC sync service (proto definitions) - Implement SupersessionChain for tracking assertion lifecycles - Add Aphoria application for code analysis/reporting - Add battery11 replication test scaffolding - Fix .gitignore to exclude nested target directories Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
641 B
TOML
29 lines
641 B
TOML
[package]
|
|
name = "stemedb-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Core logic for Episteme (StemeDB)"
|
|
|
|
# Inherit workspace lints
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
|
|
# Serialization & Hashing
|
|
rkyv = { version = "0.7", features = ["validation", "strict"] }
|
|
blake3 = "1.5"
|
|
bytecheck = "0.6" # Required for rkyv validation
|
|
|
|
# Cryptography
|
|
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
|
|
|
|
# Hybrid Logical Clocks for distributed causal ordering
|
|
uhlc = "0.7"
|
|
|
|
# Visual Provenance
|
|
image_hasher = "3.1" |