feat(kon): scaffold hybrid modular workspace
- Cargo workspace with 6 domain crates: core, audio, transcription, ai-formatting, storage, cloud-providers - Minimal Tauri shell (lib.rs + main.rs) with plugin registration - Svelte 5 frontend copied from Ramble v0.2 - All crates compile as empty stubs - App identifier: uk.co.corbel.kon Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
8
crates/storage/Cargo.toml
Normal file
8
crates/storage/Cargo.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
[package]
|
||||
name = "kon-storage"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "SQLite persistence, BM25 search, and file storage for Kon"
|
||||
|
||||
[dependencies]
|
||||
kon-core = { path = "../core" }
|
||||
2
crates/storage/src/lib.rs
Normal file
2
crates/storage/src/lib.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
// kon-storage: SQLite via sqlx, BM25 full-text search via probly-search,
|
||||
// and file storage path management.
|
||||
Reference in New Issue
Block a user