- 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>
53 lines
487 B
Plaintext
53 lines
487 B
Plaintext
# Rust
|
|
**/target/
|
|
**/*.rs.bk
|
|
Cargo.lock
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
*.pem
|
|
*.key
|
|
|
|
# Test/Coverage
|
|
*.profraw
|
|
*.profdata
|
|
/coverage/
|
|
/tarpaulin-report.html
|
|
|
|
# Build artifacts
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.dylib
|
|
|
|
# Code quality reports
|
|
.jscpd-report/
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
__pycache__/
|
|
|
|
# Temp
|
|
tmp/
|
|
|
|
# Runtime data
|
|
data/
|
|
|
|
# Go binaries (examples)
|
|
sdk/go/examples/*/basic
|
|
sdk/go/examples/*/conflict
|
|
sdk/go/examples/*/skeptic
|