stemedb/crates/stemedb-storage/Cargo.toml
jordan c59066949a feat: Add quickstart "Beyond Hello World" sections with Skeptic and Layered endpoints
- Add Layered() method to Go SDK for per-source-class consensus queries
- Add LayeredQueryParams, LayeredResult, TierResolution types to Go SDK
- Create conflict example demonstrating Skeptic and Layered endpoints
- Update quickstart.md with sections 6 (conflict detection) and 7 (authority tiers)
- Remove tracked Go binary and add data/ to .gitignore

The new quickstart sections demonstrate Episteme's differentiating features:
- Skeptic endpoint shows "Trust but Verify" conflict analysis
- Layered endpoint shows per-tier resolution (Clinical vs Anecdotal)

Note: Pre-existing large files flagged by pre-commit hook (technical debt from prior sessions)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-01 21:00:59 -07:00

28 lines
632 B
TOML

[package]
name = "stemedb-storage"
version = "0.1.0"
edition = "2021"
description = "Storage engine abstraction and implementations for Episteme"
# Inherit workspace lints
[lints]
workspace = true
[dependencies]
stemedb-core = { path = "../stemedb-core" }
sled = "0.34"
thiserror = "1.0"
tracing = "0.1"
async-trait = "0.1"
blake3 = "1.5"
hex = "0.4"
rkyv = { version = "0.7", features = ["validation"] }
# HNSW vector index for k-NN similarity search
hnsw_rs = "0.3"
# Thread-safe read-write locks for index access
parking_lot = "0.12"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt"] }
tempfile = "3.10"