RustCrypto 项目多个crate发布新版本
RustCrypto 项目多个 crate 发布新版本:
详细的公告链接,https://users.rust-lang.org/t/rustcrypto-release-announcements/59149
Rayon 是针对 Rust 语言的数据并行性库。开始使用 Rayon 的程序员,普遍表达了一种神奇的感觉:“我更改了一行,现在我的代码可以并行运行!” 。Rayon 的开发者 Josh Stone 认为这要归功于 Rust 语言自身,并撰文 Rust 是如何支持 Rayon 的并行性。
使用Rayon,可以轻松地将顺序迭代器转换为并行迭代器。通常只需将 foo.iter() 调用更改为 foo.par_iter(),其余则由 Rayon 完成示例:
use rayon::prelude::*;
fn sum_of_squares(input: &[i32]) -> i32 {
input.par_iter() // <-- just change that!
.map(|&i| i * i)
.sum()
}
Github 链接,https://github.com/rayon-rs/rayon
文章链接,https://developers.redhat.com/blog/2021/04/30/how-rust-makes-rayons-data-parallelism-magical/
rg3d,一个功能丰富的通用 3D 游戏引擎,并带有场景编辑器。迄今为止,用Rust编写的功能最强大的3D游戏引擎。
Github 链接,https://github.com/mrDIMAS/rg3d
在线 Demo 链接,https://rg3d.rs/assets/webexample/index.html
Gfx-rs,Rust 中的底层图形抽象层,低开销的类似于 Vulkan 的GPU API。gfx-rs,使用较难,建议对性能敏感的库和引擎使用,wgpu-rs 是一种安全而简单的选择。
Github 链接,https://github.com/gfx-rs/gfx
Youtube 视频,https://youtu.be/xcygqF5LVmM
祝大家五一劳动节快乐。
From 日报小组 洋芋
社区学习交流平台订阅: