47951a615b
- domain/trilium.rs: Runtime-Download (gepinnt 0.104.0), Instanz pro Projekt auf 127.0.0.1 mit FNV-Port, ETAPI (archive_note, search_notes), Token im Keyring - Setup bis aufs Passwort automatisiert: trilium_connect macht new-document (skipDemoDb), set-password und ETAPI-Login; Modul-Flag erst nach Token-Erfolg - write_panel legt direkt eine Trilium-Notiz an (text|path, folder/description/tags); noteopen-Kanal, das Terminal-Fenster öffnet die Notiz (ersetzt archive_panel) - MD-Altbestand raus: archive*/wiki*, archiveHome samt Permissions, panel_set/panel_load/ wiki_open, panel_archive*/archive_docs/*_archive_home, reveal_path, spellcheck - Dokument-Tab raus: Panel = ToDo/Befehle/Suche + Archiv-Knopf (trilium_open); panel-view/archive-form gelöscht, Markup/CSS/Messages bereinigt - Lösch-Stufe Archiv: Instanz stoppen, Trilium-Datadir und Keyring-Token löschen
55 lines
1.8 KiB
TOML
55 lines
1.8 KiB
TOML
[package]
|
|
name = "ai-control"
|
|
version = "0.3.0"
|
|
description = "Pool- und Session-Verwaltung für Claude Code"
|
|
authors = ["marcus.hinz"]
|
|
license = "MIT"
|
|
repository = "https://github.com/mHinz-hub/ai-control"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
# Zeilennummern im Release-Backtrace (sonst zeigt der Panic-Tracer nur Adressen).
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.6.3", features = [] }
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4"
|
|
tauri = { version = "2.11.3", features = ["macos-private-api", "tray-icon", "image-png"] }
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-autostart = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-clipboard-manager = "2"
|
|
base64 = "0.22"
|
|
sha2 = "0.10"
|
|
portable-pty = "0.9"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
# Markdown→HTML beim Archivieren in Trilium (Notizen sind HTML).
|
|
pulldown-cmark = { version = "0.12", default-features = false, features = ["html"] }
|
|
keyring = { version = "3", features = ["apple-native", "sync-secret-service", "windows-native"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
zbus = "5"
|
|
glib = "0.18"
|
|
gtk = "0.18"
|
|
rfd = { version = "0.15", default-features = false, features = ["gtk3"] }
|
|
ksni = "0.1"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
# Der Installations-Dialog läuft vor dem Tauri-Setup, also ohne AppHandle und
|
|
# damit ohne das Dialog-Plugin. Unter macOS braucht rfd kein Backend-Feature.
|
|
rfd = { version = "0.15", default-features = false }
|
|
objc2 = "0.6"
|
|
objc2-app-kit = { version = "0.3", features = ["NSApplication", "NSImage", "NSResponder", "NSRunningApplication"] }
|
|
objc2-foundation = { version = "0.3", features = ["NSString"] }
|