Skip to content

Commit

Permalink
fix types and build
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO committed Sep 25, 2024
1 parent b44fceb commit 1d575c7
Show file tree
Hide file tree
Showing 4 changed files with 277 additions and 57 deletions.
2 changes: 1 addition & 1 deletion livekit-ffi/protocol/room.proto
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ message RoomEvent {
RoomEOS eos = 26; // The stream of room events has ended
DataPacketReceived data_packet_received = 27;
TranscriptionReceived transcription_received = 28;
ChatMessage chat_message = 29;
ChatMessageReceived chat_message = 29;
}
}

Expand Down
2 changes: 1 addition & 1 deletion livekit-ffi/src/livekit.proto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2498,7 +2498,7 @@ pub mod room_event {
#[prost(message, tag="28")]
TranscriptionReceived(super::TranscriptionReceived),
#[prost(message, tag="29")]
ChatMessage(super::ChatMessage),
ChatMessage(super::ChatMessageReceived),
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
Expand Down
8 changes: 6 additions & 2 deletions livekit-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ repository = "https://github.com/livekit/rust-sdks"

[dependencies]
livekit-runtime = { path = "../livekit-runtime", version = "0.3.0" }
tokio = { version = "1", default-features = false, features = [ "sync", "macros", "rt" ] }
tokio = { version = "1", default-features = false, features = [
"sync",
"macros",
"rt",
] }
futures-util = { version = "0.3", features = ["sink"] }
parking_lot = "0.12"
prost = "0.12"
prost-types = "0.12"

serde = "1.0"
serde = "1.0.210"
pbjson = "0.6"
pbjson-types = "0.6"
thiserror = "1.0"
Loading

0 comments on commit 1d575c7

Please sign in to comment.