-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
95 lines (89 loc) · 2.52 KB
/
Cargo.toml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
workspace = { members = [
"media",
"signal",
"telemetry",
"telemetry/dash",
"rtc",
"media",
"input", "util",
] }
[package]
name = "remote"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eyre = "0.6.10"
parking_lot = "0.12.1"
tokio = { version = "1", features = ["full"] }
clap = { version = "4.4.8", features = ["derive"] }
once_cell = { version = "1.18.0", features = ["parking_lot"] }
derive_more = "0.99.17"
serde_json = "1.0.108"
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "1.6.1", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
"serde",
] }
tokio-tungstenite = { version = "0.21", features = ["native-tls"] }
# tungstenite = { version = "0.21", features = ["rustls-tls-native-roots"] }
futures = "*"
tracing = "0.1"
tracing-tracy = { version = "0.11", default-features = false }
tracing-subscriber = "0.3"
humantime = "2.1.0"
async-trait = "0.1.74"
bytes = "1.5.0"
rodio = "0.17.3"
bincode = "1.3.3"
console-subscriber = "0.2.0"
dotenv = "0.15.0"
thiserror = "1.0"
telemetry = { path = "telemetry" }
rtc = { path = "rtc" }
# openh264 = "0.4.4"
scopeguard = "1.2.0"
signal = { path = "signal" }
media = { path = "media" }
egui = { version = "0.27", features = [] }
winit = "0.29"
egui-directx11 = { path = "egui-directx11" }
egui-winit = "0.27"
egui_demo_lib = "0.27.2"
input = { path = "input" }
[dependencies.windows]
version = "0.56"
features = [
# "implement",
# "Foundation",
# "Win32_Foundation",
# "Win32_System_Com",
# "Win32_System_Ole",
# "Win32_System_Memory",
# # "Win32_Graphics_Gdi",
# "Win32_System_Com_StructuredStorage",
# "Win32_System_SystemServices",
# "Win32_UI_Shell_Common",
# "Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
# "Win32_System_LibraryLoader",
# "Win32_UI_Input_KeyboardAndMouse",
# # "Win32_Graphics_Direct3D12",
# "Win32_Graphics_Direct3D11",
# "Win32_Graphics_Dxgi_Common",
# "Win32_Security",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
# "Win32_System_WindowsProgramming",
# "Win32_UI_WindowsAndMessaging",
# "Win32_Media_MediaFoundation",
# "Win32_UI_Shell_PropertiesSystem",
"Win32_System_Power",
]
[profile.release]
panic = "abort"
debug = true
[profile.dev]
panic = "abort"