Files
RemoteDesk/client/helpers/native-video/Cargo.toml
T
曾志威 5db6b9ef68
ci / rust (push) Canceled after 0s
ci / web (push) Canceled after 0s
ci / package-preview (push) Canceled after 0s
ci / package-installer (push) Canceled after 0s
ci / linux-agent (push) Canceled after 0s
ci / edge-service (push) Canceled after 0s
ci / coturn-pop (push) Canceled after 0s
ci / package-windows-host (push) Canceled after 0s
Initial commit
2026-08-14 00:35:42 +08:00

34 lines
864 B
TOML

[package]
name = "remotedesk-native-video"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[dependencies]
remotedesk-client-core = { path = "../../crates/client-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[target.'cfg(windows)'.dependencies]
raw-window-handle = "0.6"
winit = "0.30"
windows = { version = "0.62.2", features = [
"Win32_Foundation",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_Media_MediaFoundation",
"Win32_System_Com",
] }
[lints.rust]
# The Windows adapter is the only FFI boundary in this crate. All unsafe calls
# are kept in one function with explicit initialized out-parameters.
unsafe_code = "allow"
[lints.clippy]
all = "warn"
pedantic = "warn"