< 返回版块

洋芋 发表于 2021-05-01 22:42

Tags:rust, 日报

RustCrypto 项目多个crate发布新版本

RustCrypto 项目多个 crate 发布新版本:

  • aead v0.4;
  • cipher v0.3;
  • crypto v0.2;
  • elliptic-curve v0.9;
  • ecdsa v0.11;

详细的公告链接,https://users.rust-lang.org/t/rustcrypto-release-announcements/59149

Rust如何使Rayon的数据并行性变得神奇

Rayon 是针对 Rust 语言的数据并行性库。开始使用 Rayon 的程序员,普遍表达了一种神奇的感觉:“我更改了一行,现在我的代码可以并行运行!” 。Rayon 的开发者 Josh Stone 认为这要归功于 Rust 语言自身,并撰文 Rust 是如何支持 Rayon 的并行性。

  • Rust 的所有权和借用规则;
  • 线程安全 traits:SendSync
  • 闭包 traits:FnOnceFnMutFn
  • 泛型约束;

使用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游戏引擎现已完全支持WebAssembly

rg3d,一个功能丰富的通用 3D 游戏引擎,并带有场景编辑器。迄今为止,用Rust编写的功能最强大的3D游戏引擎。

Github 链接,https://github.com/mrDIMAS/rg3d

在线 Demo 链接,https://rg3d.rs/assets/webexample/index.html

Gfx-rs 发布 v0.8

Gfx-rs,Rust 中的底层图形抽象层,低开销的类似于 Vulkan 的GPU API。gfx-rs,使用较难,建议对性能敏感的库和引擎使用,wgpu-rs 是一种安全而简单的选择。

Github 链接,https://github.com/gfx-rs/gfx

【Video】Crust of Rust 系列:胖指针

Youtube 视频,https://youtu.be/xcygqF5LVmM

祝大家五一劳动节快乐。


From 日报小组 洋芋

社区学习交流平台订阅:

评论区

写评论

还没有评论

1 共 0 条评论, 1 页