Rust 日报小组给大家拜大年了
println!("祝 Rust 步步高升,Rust 社区越来越好,你的 Rust 越来越6");
rust Benchmarks 小技巧
为什么你的 Rust Benchmark 可能出现问题,如何正确使用标准库中的 std::hint::black_box
呢?Gendignoux 在一篇文章中分享了他在深入挖掘Benchmark 出现的问题之后得出的结论。
原文链接:https://gendignoux.com/blog/2022/01/31/rust-benchmarks.html
Panics vs cancellation
人们在使用 Rust 异步时,经常抱怨的一件事就是取消,Rust Team 的 niko 分享了他对 Panics 和 canncellation 的理解,以及如何更好地处理异步取消这个棘手的问题
原文链接-连载中:https://smallcultfollowing.com/babysteps//blog/2022/01/27/panics-vs-cancellation-part-1/
Symphonia 发布 v0.5
Symphonia 是一个音频解码和媒体解复用库,支持 AAC、ALAC、FLAC、MKV、MP3、MP4、OGG、Vorbis、WAV 和 WebM 多种格式。类似 FFMpeg,不过是用纯 Rust 来实现的。
-- From 日报小组 RustPlumber