Complete Aphoria claims system overhaul: - A1: Rename ExtractedClaim to Observation (extractors produce observations, not claims) - A2: Add AuthoredClaim with full provenance, invariants, and authority tiers - A3: Verify engine comparing observations against authored claims, CLI + formatters - A4: Corpus as first-class assertions with predicate indexing, authority lens, trust packs - A5: Coverage analysis, explain/docs generation, self-audit extractor, claim suggester skill Also includes: 42 extractors updated for Observation type, verifiable_predicates trait, conflict detection with comparison modes, claims TOML persistence, Grafana dashboard, backup/restore scripts, and comprehensive test coverage. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
91 lines
1.9 KiB
TOML
91 lines
1.9 KiB
TOML
[package]
|
|
name = "aphoria"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A code-level truth linter powered by Episteme"
|
|
authors = ["Orchard9"]
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "aphoria"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "aphoria"
|
|
path = "src/lib.rs"
|
|
|
|
# Use workspace lints with CLI overrides
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# StemeDB dependencies (relative paths from applications/aphoria/)
|
|
stemedb-core = { path = "../../crates/stemedb-core" }
|
|
stemedb-storage = { path = "../../crates/stemedb-storage" }
|
|
stemedb-ingest = { path = "../../crates/stemedb-ingest" }
|
|
stemedb-query = { path = "../../crates/stemedb-query" }
|
|
stemedb-wal = { path = "../../crates/stemedb-wal" }
|
|
stemedb-lens = { path = "../../crates/stemedb-lens" }
|
|
|
|
# CLI
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
# File walking
|
|
ignore = "0.4"
|
|
|
|
# Parallel extraction
|
|
rayon = "1.10"
|
|
|
|
# Pattern matching
|
|
regex = "1.10"
|
|
globset = "0.4"
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
toml = "0.8"
|
|
|
|
# Output formatting
|
|
comfy-table = "7.1"
|
|
|
|
# Cryptography
|
|
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
|
|
blake3 = "1.5"
|
|
rand = "0.8"
|
|
hex = "0.4"
|
|
|
|
# Error handling
|
|
thiserror = "1.0"
|
|
|
|
# Platform directories
|
|
dirs = "5.0"
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# rkyv for zero-copy (consistent with stemedb)
|
|
rkyv = { version = "0.7", features = ["validation"] }
|
|
bytecheck = "0.6"
|
|
|
|
# HTTP client for RFC/OWASP fetching
|
|
ureq = { version = "2.9", features = ["tls"] }
|
|
|
|
# Pattern learning
|
|
uuid = { version = "1.11", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
once_cell = "1.20"
|
|
|
|
# System info
|
|
whoami = "1.5"
|
|
|
|
# Observation storage for LLM evaluation
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.10"
|