* Create README.md * add example * crates & examples * fix syntax * add LICENSE * thirdparty LICENSE * rearrange repo * fix build * egui versions * prepare publish * fix demo compilation * add test ci * Update rust.yml * forgot runs-on * install protoc before building * avoid rate limit * include submodules * updates to readme * cache rust builds Co-authored-by: David Zhao <[email protected]> Co-authored-by: David Zhao <[email protected]>
14 lines
194 B
Rust
14 lines
194 B
Rust
extern crate core;
|
|
|
|
pub mod proto {
|
|
include!(concat!(env!("OUT_DIR"), "/livekit.rs"));
|
|
}
|
|
|
|
mod rtc_engine;
|
|
mod signal_client;
|
|
|
|
pub mod room;
|
|
pub mod webrtc {
|
|
pub use livekit_webrtc::*;
|
|
}
|