-
Notifications
You must be signed in to change notification settings - Fork 59
/
Cargo.toml
28 lines (27 loc) · 904 Bytes
/
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
[workspace]
resolver = "2"
members = [
"livekit",
"livekit-api",
"livekit-protocol",
"livekit-ffi",
"livekit-runtime",
"libwebrtc",
"soxr-sys",
"yuv-sys",
"imgproc",
"webrtc-sys",
"webrtc-sys/build",
]
[workspace.dependencies]
imgproc = { version = "0.3.12", path = "imgproc" }
yuv-sys = { version = "0.3.7", path = "yuv-sys" }
libwebrtc = { version = "0.3.8", path = "libwebrtc" }
livekit-api = { version = "0.4.1", path = "livekit-api" }
livekit-ffi = { version = "0.12.4", path = "livekit-ffi" }
livekit-protocol = { version = "0.3.6", path = "livekit-protocol" }
livekit-runtime = { version = "0.3.1", path = "livekit-runtime" }
livekit = { version = "0.7.1", path = "livekit" }
soxr-sys = { version = "0.1.0", path = "soxr-sys" }
webrtc-sys-build = { version = "0.3.6", path = "webrtc-sys/build" }
webrtc-sys = { version = "0.3.6", path = "webrtc-sys" }