stemedb/crates/stemedb-api/Cargo.toml
jordan 157dbbb9eb feat: Complete Aphoria Phase 8-9 + UAT suite (90/90 tests passing)
## Phase 8: Enterprise Extractor Improvements 
- 14 security extractors (TLS, JWT, SQL injection, XSS, etc.)
- 10 framework-specific extractors (Spring, Django, Rails, etc.)
- Config file security detection (YAML, TOML)

## Phase 9: Autonomous Extractor Generation 
- Shadow mode executor with TP/FP tracking
- Graduation pipeline with confidence thresholds
- Auto-rollback on regression detection
- Cross-project pattern syncing

## UAT Suite Complete (14 scripts, 90 tests)
- test-core-detection.sh (6 tests)
- test-declarative-extractors.sh (5 tests)
- test-domain-frameworks.sh (5 tests)
- test-domain-unreal.sh (3 tests)
- test-llm-extraction.sh (6 tests)
- test-eval-harness.sh (5 tests)
- test-cross-language.sh (3 tests)
- test-precommit-performance.sh (4 tests)
- test-output-formats.sh (8 tests)
- test-drift-detection.sh (6 tests)
- test-exit-codes.sh (12 tests)
+ 3 more scripts

## Other Changes
- Updated roadmap to mark Phase 8-9 complete
- Added .gitignore entries for build artifacts
- Updated pre-commit: 800 line limit, exclude tests/data/cmd

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 22:50:55 -07:00

51 lines
1.4 KiB
TOML

[package]
name = "stemedb-api"
version = "0.1.0"
edition = "2021"
description = "HTTP API for Episteme (StemeDB)"
[lints]
workspace = true
[features]
default = []
aphoria = ["dep:aphoria"]
[dependencies]
stemedb-core = { path = "../stemedb-core" }
stemedb-wal = { path = "../stemedb-wal", features = ["group-commit"] }
stemedb-storage = { path = "../stemedb-storage" }
stemedb-ingest = { path = "../stemedb-ingest" }
stemedb-query = { path = "../stemedb-query" }
stemedb-lens = { path = "../stemedb-lens" }
# Optional: Aphoria code-level truth linting
aphoria = { path = "../../applications/aphoria", optional = true }
axum = { version = "0.7", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
utoipa = { version = "5", features = ["axum_extras"] }
utoipa-axum = "0.1"
utoipa-swagger-ui = { version = "8", features = ["axum"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["trace", "cors"] }
futures = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "1"
hex = "0.4"
blake3 = "1"
base64 = "0.22"
getrandom = "0.2"
metrics = "0.23"
metrics-exporter-prometheus = "0.15"
[dev-dependencies]
tempfile = "3"
tower = { version = "0.4", features = ["util"] }
ed25519-dalek = { version = "2", features = ["rand_core"] }
rand = "0.8"
hex = "0.4"