rtp-rs
rtp-rs copied to clipboard
Rust reader for Realtime Transport Protocol packet structure
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. Changelog Sourced from criterion's changelog. [0.4.0] - 2022-09-10 Removed The Criterion::can_plot function has been removed. The Criterion::bench_function_over_inputs function has been...
this makes idiomatic error propagation easier and allows utilizing crates like thiserror or anyhow this implements issue #11
While not technically necessary this makes proper error propagation a lot easier, especially when using common libraries like thiserror or anyhow.
Updates the requirements on [criterion](https://github.com/bheisler/criterion.rs) to permit the latest version. Changelog Sourced from criterion's changelog. [0.5.0] - 2023-05-23 Changed Replaced lazy_static dependency with once_cell Improved documentation of the html_reports feature...
The only things keeping rtp-rs from building on no-std are `RtpPacketBuilder::build` (`build_into` is fine), the two Error trait impls, some references to `std` that could be `core`, and some use...