- Add `content: Option<String>` to SourceRecord with rkyv schema evolution (LegacySourceRecord compat deserializer for backward compatibility) - Add MAX_SOURCE_CONTENT_LEN (1MB) limit with API validation - Strip content from list responses, include in single-source GET - Update Go SDK RegisterSourceRequest with Content field - FCM pipeline extracts PDF text via pdftotext and passes to registration - Dashboard impact panel fetches and displays source content with expand/collapse - Add feed endpoint, dashboard feed panel, and signed assertion support - Update data-structures.md, API docs, and storage docs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
726 B
TOML
31 lines
726 B
TOML
[package]
|
|
name = "stemedb-ingest"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Ingestion pipeline for Episteme"
|
|
|
|
# Inherit workspace lints
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
stemedb-core = { path = "../stemedb-core" }
|
|
stemedb-wal = { path = "../stemedb-wal" }
|
|
stemedb-storage = { path = "../stemedb-storage" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tracing = "0.1"
|
|
rkyv = { version = "0.7", features = ["validation"] }
|
|
thiserror = "1.0"
|
|
blake3 = "1.5"
|
|
hex = "0.4"
|
|
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
|
|
# Hybrid Logical Clocks for distributed causal ordering
|
|
uhlc = "0.7"
|
|
# Async traits
|
|
async-trait = "0.1"
|
|
# Metrics
|
|
metrics = "0.23"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.10"
|
|
rand = "0.8" |