Skip to content
Open
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
23 changes: 23 additions & 0 deletions templates/clips/desktop/src-tauri/Cargo.lock

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

8 changes: 7 additions & 1 deletion templates/clips/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,13 @@ reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"json",
] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync"] }
tokio = { version = "1", features = [
"rt",
"rt-multi-thread",
"time",
"sync",
"macros",
] }
chrono = { version = "0.4", features = ["serde"] }
# Verify the integrity of the Whisper model we download from HuggingFace.
sha2 = "0.10"
Expand Down
1 change: 1 addition & 0 deletions templates/clips/desktop/src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ pub fn run() {
native_screen::native_fullscreen_pending_uploads,
native_screen::native_fullscreen_recover_orphaned_uploads,
native_screen::native_fullscreen_recording_retry_upload,
native_screen::native_fullscreen_recording_cancel_retry,
native_screen::native_fullscreen_recording_mark_upload_error,
native_screen::native_fullscreen_recording_clear_upload,
native_screen::native_fullscreen_recording_dismiss_upload,
Expand Down
Loading
Loading