Complete implementation across all 13 phases: - vault-core: types, YAML frontmatter parsing, entity classification, filesystem ops, config, prompt composition, validation, search - vault-watch: filesystem watcher with daemon write filtering, event classification - vault-scheduler: cron engine, process executor, task runner with retry logic and concurrency limiting - vault-api: Axum REST API (15 route modules), WebSocket with broadcast, AI assistant proxy, validation, templates - Dashboard: React + TypeScript + Tailwind v4 with kanban, CodeMirror editor, dynamic view system, AI chat sidebar - Nix flake with dev shell and NixOS module - Graceful shutdown, inotify overflow recovery, tracing instrumentation Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
564 B
TOML
24 lines
564 B
TOML
[package]
|
|
name = "vault-api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
vault-core.workspace = true
|
|
vault-watch.workspace = true
|
|
vault-scheduler.workspace = true
|
|
axum.workspace = true
|
|
tower.workspace = true
|
|
tower-http.workspace = true
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_yaml.workspace = true
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
rust-embed.workspace = true
|
|
pulldown-cmark.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
futures-util = "0.3"
|
|
reqwest.workspace = true
|