Rusty Rain
Rusty Rain
### Discussed in https://github.com/webrtc-rs/webrtc/discussions/140 Originally posted by **yusufziyacs** December 11, 2021 Hello there. I've just started using webrtc-rs in order to convert RTSP streams into webrtc. I can easily create...
https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html
with nightly rustc RUSTFLAGS="-Z sanitizer=leak" cargo test these four crates have memory leaks
example: pub type FnTimeGen = Arc Pin
Here is the roadmap of WebRTC.rs project. # v0.1.0 (09/25/2021) - [x] SDP - [x] mDNS - [x] STUN - [x] TURN - [x] ICE - [x] DTLS - [x]...
As a sub task of https://github.com/webrtc-rs/webrtc/issues/84, similar to quinn's implementation: https://github.com/quinn-rs/quinn sctp-proto: Deterministic state machine of the protocol which performs no I/O internally. sctp-async: High-level async API based on tokio.
currently ICE/DTLS/SCTP implementations follow gorountine style, instead of idiomatic rust style. Try to refactor them to more idiomatic rust style with less Mutex.