24 lines
675 B
TOML
24 lines
675 B
TOML
[package]
|
|
name = "remotedesk-windows-agent-viewer"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
flate2 = "1.1"
|
|
remotedesk-native-video = { path = "../native-video" }
|
|
remotedesk-protocol = { path = "../../../protocol" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
softbuffer = "0.4"
|
|
winit = "0.30"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
cpal = "0.17.3"
|
|
opus2 = { version = "0.4.0", default-features = false, features = ["backend-mousiki"] }
|
|
windows = { version = "0.62.2", features = ["Win32_Foundation", "Win32_UI_WindowsAndMessaging"] }
|
|
|
|
[lints.rust]
|
|
unsafe_code = "allow"
|