-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 1.08 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (37 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "wireless-display"
version = "1.0.3"
edition = "2024"
homepage = "https://github.com/teamclouday/wireless-display"
repository = "https://github.com/teamclouday/wireless-display"
license = "GPL-3.0"
description = "Use your laptop as a second monitor for your Windows desktop PC over WiFi."
keywords = ["webrtc", "screen-capture", "remote-desktop"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.99"
tokio = { version = "1.47.1", features = ["full"] }
# cli interface
dialoguer = "0.12.0"
clap = { version = "4.5.47", features = ["derive"] }
# webrtc
webrtc = "0.13.0"
webrtc-util = "0.11.0"
base64 = "0.22.1"
warp = { version = "0.4.2", features = ["server"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
reqwest = { version = "0.12.23", features = ["json"] }
# screen capture
xcap = "0.7.0"
ffmpeg-next = { version = "8.0.0", features = ["default"] }
# mouse capture
mouse_position = "0.1.4"
# mdns pairing
mdns-sd = "0.15.1"
flume = "0.11.1"
# GUI
winit = "0.30.12"
gl = "0.14.0"
glutin = "0.32.3"
keep-active = "0.1.2"