-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule rust-sdks
updated
18 files
+56 −3 | Cargo.lock | |
+9 −3 | livekit-api/src/signal_client/mod.rs | |
+1 −1 | livekit-ffi/Cargo.toml | |
+6 −0 | livekit-ffi/protocol/ffi.proto | |
+37 −0 | livekit-ffi/protocol/room.proto | |
+11 −1 | livekit-ffi/src/cabi.rs | |
+27 −2 | livekit-ffi/src/conversion/room.rs | |
+80 −4 | livekit-ffi/src/livekit.proto.rs | |
+2 −0 | livekit-ffi/src/server/mod.rs | |
+28 −0 | livekit-ffi/src/server/requests.rs | |
+84 −2 | livekit-ffi/src/server/room.rs | |
+5 −1 | livekit-protocol/Cargo.toml | |
+1 −0 | livekit/Cargo.toml | |
+29 −1 | livekit/src/proto.rs | |
+46 −0 | livekit/src/room/mod.rs | |
+56 −2 | livekit/src/room/participant/local_participant.rs | |
+9 −1 | livekit/src/rtc_engine/mod.rs | |
+14 −2 | livekit/src/rtc_engine/rtc_session.rs |