Trimmed monorepo checkout (fluxer_desktop + packages/voice_engine_v2 + tools/ci) with a "Connect to a Different Server" menu item and popout that lets the desktop app switch to any self-hosted Fluxer instance, plus fixes for well-known discovery on single-domain self-hosted deployments and a false-positive ERR_ABORTED on same-origin client redirects during the switch. Defaults to chat.fluxr.chat and uses an isolated userData directory from the official build.
43 lines
1021 B
TOML
43 lines
1021 B
TOML
[package]
|
|
name = "fluxer_linux_screen_capture"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-or-later"
|
|
publish = false
|
|
|
|
[workspace]
|
|
resolver = "2"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = []
|
|
wgpu = ["dep:wgpu", "fluxer_gpu_rebuild/wgpu"]
|
|
|
|
[dependencies]
|
|
napi = {version = "3.9.1", default-features = false, features = ["dyn-symbols", "napi8", "async"]}
|
|
napi-derive = "3.5.6"
|
|
parking_lot = "0.12"
|
|
fluxer_screen_frame_bus = { path = "../screen-frame-bus" }
|
|
fluxer_gpu_rebuild = { path = "../gpu-rebuild" }
|
|
wgpu = { version = "29", optional = true, default-features = false }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
async-io = "2.6.0"
|
|
dcv-color-primitives = "1.0"
|
|
futures-lite = "2.6.1"
|
|
libc = "0.2"
|
|
pipewire = { version = "0.10.0", features = ["v0_3_33"] }
|
|
zbus = "5.16.0"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.8", default-features = false, features = ["cargo_bench_support"] }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.3.2"
|
|
|
|
[[bench]]
|
|
name = "pipewire_callback"
|
|
harness = false
|