Some checks failed
Build & Sign Wraith / Build Windows + Sign (push) Failing after 9s
Backend cleanup (Gemini): - Strip verbose doc comments across SSH, RDP, and command modules - Add 10s timeout on SSH connect/auth, 15s on RDP connection - Fix macOS data directory to ~/Library/Application Support/Wraith - Add generic disconnect_session command - Simplify SFTP setup and error handling - Inline AppState field construction Gemini AI XO integration: - Add GeminiService (src-tauri/src/ai/) with API Key, Service Account, and Google Account (OAuth2) authentication methods - Add ai_commands (set_gemini_auth, gemini_chat, is_gemini_authenticated) - Add GeminiPanel.vue — collapsible chat sidebar with multi-auth UI - Wire Ctrl+Shift+G toggle and status bar AI button in MainLayout - Add reqwest + anyhow dependencies Bugfix: - Fix dropped modulo operator in Ctrl+Tab/Ctrl+Shift+Tab handlers Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
name = "wraith"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "wraith_lib"
|
|
crate-type = ["lib", "cdylib", "staticlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["devtools"] }
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-updater = "2"
|
|
anyhow = "1"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
aes-gcm = "0.10"
|
|
argon2 = "0.5"
|
|
rand = "0.9"
|
|
hex = "0.4"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
base64 = "0.22"
|
|
dashmap = "6"
|
|
tokio = { version = "1", features = ["full"] }
|
|
async-trait = "0.1"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
thiserror = "2"
|
|
russh = "0.48"
|
|
russh-sftp = "2.1.1"
|
|
ssh-key = { version = "0.6", features = ["ed25519", "rsa"] }
|
|
|
|
# RDP (IronRDP)
|
|
ironrdp = { version = "0.14", features = ["connector", "session", "graphics", "input"] }
|
|
ironrdp-tokio = { version = "0.8", features = ["reqwest-rustls-ring"] }
|
|
ironrdp-tls = { version = "0.2", features = ["rustls"] }
|
|
tokio-rustls = "0.26"
|
|
x509-cert = { version = "0.2", default-features = false, features = ["std"] }
|
|
sspi = { version = "0.18", features = ["network_client"] }
|