From 9ca0da84801f2d49ae792ceafb9e2b83aa4846f6 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Mon, 24 Nov 2025 03:10:29 -0500 Subject: [PATCH] Fix cargo.toml for macOS --- src-tauri/Cargo.toml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 8b9b5ef..eb50aa1 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -38,17 +38,18 @@ rtrb = "0.3" tokio = { version = "1", features = ["sync", "time"] } # Video decoding +lru = "0.12" +image = { version = "0.24", default-features = false, features = ["jpeg"] } + +# HTTP server for video streaming +tiny_http = "0.12" + [target.'cfg(target_os = "macos")'.dependencies] ffmpeg-next = { version = "7.0", features = ["build"] } [target.'cfg(not(target_os = "macos"))'.dependencies] ffmpeg-next = "7.0" -lru = "0.12" -image = { version = "0.24", default-features = false, features = ["jpeg"] } - -# HTTP server for video streaming -tiny_http = "0.12" [profile.dev] opt-level = 1 # Enable basic optimizations in debug mode for audio decoding performance