Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions windows/tauri/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions windows/tauri/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ license = "Apache-2.0"
tauri-build = { version = "2", features = [] }

[dependencies]
chrono = { version = "0.4", features = ["serde"] }
lithe-core = { path = "../../../rust/lithe-core" }
lithe-project = { path = "../crates/project" }
lithe-terminal = { path = "../crates/terminal" }
keyring = { version = "3.6.3", features = ["windows-native"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
regex = "1"
tauri = { version = "2", features = ["common-controls-v6", "protocol-asset"] }
tauri-plugin-clipboard-manager = "2"
tauri-plugin-deep-link = "2"
Expand All @@ -30,6 +32,7 @@ tauri-plugin-store = "2"
tauri-plugin-updater = "2"
tauri-plugin-window-state = "2"
url = "2"
windows-sys = { version = "0.61", features = ["Win32_Storage_FileSystem"] }

[profile.release]
lto = "thin"
Expand Down
13 changes: 0 additions & 13 deletions windows/tauri/src-tauri/src/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -410,19 +410,6 @@ mod tests {
}
}

#[tauri::command]
pub fn frontend_trace(level: String, scope: String, message: String, payload: Option<Value>) {
eprintln!(
"[frontend][{level}][{scope}] {message} {}",
payload.unwrap_or(Value::Null)
);
}

#[tauri::command]
pub fn record_startup_milestone(milestone: String) {
eprintln!("[startup] {milestone}");
}

#[tauri::command]
pub fn get_system_theme(window: WebviewWindow) -> String {
match window.theme() {
Expand Down
Loading
Loading