agent: lumotia-rebrand — rust workspace crates magnotia-* -> lumotia-*
Phase 2 of the rebrand cascade. Renames all 9 workspace crates from magnotia-* to lumotia-* plus the src-tauri binary crate name: - magnotia-ai-formatting -> lumotia-ai-formatting - magnotia-audio -> lumotia-audio - magnotia-cloud-providers -> lumotia-cloud-providers - magnotia-core -> lumotia-core - magnotia-hotkey -> lumotia-hotkey - magnotia-llm -> lumotia-llm - magnotia-mcp -> lumotia-mcp - magnotia-storage -> lumotia-storage - magnotia-transcription -> lumotia-transcription - magnotia -> lumotia (src-tauri binary) - magnotia_lib -> lumotia_lib (src-tauri lib target) Crate directories (crates/audio/ etc.) stay as-is; only the Cargo.toml [package] name field changes plus all consumer module imports (magnotia_core -> lumotia_core, etc.). Remaining magnotia_* references at this point are intentional and scoped to later phases: tracing targets (Phase 4), DB setting keys magnotia_preferences/magnotia_history (Phase 5). cargo build --workspace passes. cargo test --workspace: 330 pass, 0 fail. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// Tauri commands wrapping magnotia_storage profile + profile_term CRUD.
|
||||
// Pattern mirrors tasks.rs — flat imports from `magnotia_storage` with a `db_`
|
||||
// Tauri commands wrapping lumotia_storage profile + profile_term CRUD.
|
||||
// Pattern mirrors tasks.rs — flat imports from `lumotia_storage` with a `db_`
|
||||
// alias prefix to avoid name collisions with the command functions, plain
|
||||
// snake_case parameters (Tauri 2.x auto-converts camelCase JS keys),
|
||||
// `.map_err(|e| e.to_string())` for error conversion, and camelCase DTOs
|
||||
@@ -11,8 +11,8 @@
|
||||
|
||||
use serde::Serialize;
|
||||
|
||||
use magnotia_ai_formatting::extract_corrections;
|
||||
use magnotia_storage::{
|
||||
use lumotia_ai_formatting::extract_corrections;
|
||||
use lumotia_storage::{
|
||||
add_profile_term as db_add_profile_term, create_profile as db_create_profile,
|
||||
delete_profile as db_delete_profile, delete_profile_term as db_delete_profile_term,
|
||||
list_profile_terms as db_list_profile_terms, list_profiles as db_list_profiles,
|
||||
|
||||
Reference in New Issue
Block a user