Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Cargo.lock

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

15 changes: 5 additions & 10 deletions client/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,11 @@ rusqlite = { version = "0.32", features = ["bundled"] }
nnnoiseless = { version = "0.5", default-features = false }

# Screen capture
# Pinned to Detair/scap fork because upstream scap 0.1.0-beta.1 introduced a
# Frame enum restructure (Frame::Video(VideoFrame::*)) without updating the
# Linux pipewire backend, breaking the Linux build. Our fork (commit 4d1304e9)
# adapts the Linux backend to the new enum structure plus a Windows typo fix.
#
# Upstream PR that would fix this: https://github.com/CapSoftware/scap/pull/178
# (open since 2025-10-26, broader scope: adds sequence numbers + SystemTime +
# latest-buffer grab). Once merged and released, drop this git dep and pin to
# the next scap release. Track in #TODO (or file an issue).
scap = { git = "https://github.com/Detair/scap.git", branch = "fix/linux-frame-enum" }
# Pinned to upstream main HEAD until the next scap release. The Linux pipewire
# backend regression that required our Detair/scap fork has been resolved
# upstream. When CapSoftware/scap publishes a new release on crates.io, replace
# this git dep with a normal version pin.
scap = { git = "https://github.com/CapSoftware/scap.git", rev = "c03f15a4631f40cd8d2e36807befb83b314cfeb7" }

# Webcam capture
nokhwa = { version = "0.10", features = ["input-native"] }
Expand Down
Loading