Implement native WebRtcTest validation (#96)
Some checks failed
Native code generation / deterministic (push) Failing after 2m5s
Imaging and meshing gate / native (push) Failing after 5m37s
JPEG 2000 feature / linux (push) Successful in 2m49s
Native Rust workspace compile / compile (push) Failing after 17m32s
Skia feature / linux (push) Successful in 31m32s

This commit is contained in:
2026-08-11 15:46:30 +00:00
parent da4afec708
commit 66f10baa1b
14 changed files with 4280 additions and 17 deletions

View File

@@ -8,9 +8,23 @@ repository.workspace = true
description = "WebRTC voice shims for the MetaCrate LibreMetaverse rewrite"
[dependencies]
audiopus = "0.2"
hound = "3.5"
libremetaverse = { path = "../libremetaverse" }
libremetaverse-structured-data = { path = "../libremetaverse-structured-data" }
libremetaverse-types = { path = "../libremetaverse-types" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
str0m = { version = "0.22", default-features = false, features = ["rust-crypto"] }
tokio = { version = "1.47.1", features = ["macros", "net", "rt", "sync", "time"] }
[features]
default = []
real-audio = ["dep:cpal"]
[dependencies.cpal]
version = "0.18"
optional = true
[lints]
workspace = true

View File

@@ -3,11 +3,13 @@
extern crate self as libremetaverse_voice_webrtc;
mod generated;
mod native;
pub use generated::*;
pub use libremetaverse as core;
pub use libremetaverse_structured_data as structured_data;
pub use libremetaverse_types::Error;
pub use native::*;
/// Project-owned boundary types for external JSON signatures.
pub mod signaling {

File diff suppressed because it is too large Load Diff