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