InfoQ 趋势报告- Rust 从创新阶段转变为早期采用阶段
Rust 已经从创新阶段转变为早期采用阶段,这主要是由于它在基础设施和网络数据平面空间(例如,Habitat和Linkerd 2.0)中的应用。Rust 语言也逐渐成为 WebAssembly 的天然合作伙伴,帮助提高人们的认识。此外 Facebook 选择使用 Rust 实现其 Libra 加密货币。
详情请查看详细报告
Parc3l
使用Parcel bundler工具,将Three .js代码和Rust代码合并到同一个web页面中。
kubernetes-rust
Kubernetes API 的 Rust 客户端
详情查看GitHub kubernetes-rust
Linux Security Summit 2019
用 Rust 编写 Linux Kernel 模块,详见YouTube视频
Async-await 开始 beta 测试
在 1.39 发布的 beta 版本中,将支持 async-await 语法,预计2019 年 11 月 7 日发布。当 async-await 稳定之后,意味着 Rust 经过多年的努力之后终于使得效率和异步I/O 得到支持。
详情请查看链接
Test-Case crate 发布 0.3.1 版本
test-case 是一个用于生成测试用例的过程性宏属性,这个 crate 设计来源于NUnit 和 JUnit,并且派生和继承了 /u/sasik520
这个版本发布之后,这个宏能够稳定运行,并且更好的支持 errors 以及信息名字。
使用用例:
use test_case::test_case;
#[test_case(2)]
#[test_case(4)]
fn multiple_test_cases(x: u32) {
assert!(x < 10)
}
#[test_case(2 => 4)] // test case can also assert result of the function
#[test_case(4 => 8)]
fn result(x: u32) -> u32 { x * 2 }
#[test_case(1, 8 ; "test 1 + 8 = 9") // test case can have optional name (default is taken from arguments)
fn name(x: u32, y: u32) {
assert_eq!(9, x + y)
}
#[test_case(1, 2 => 3 ; "test no. 1")]
#[test_case(4, 5 => 9)]
fn result_and_name(x: u32, y: u32) -> u32 { x + y }
详情请查看 Github 链接
From 日报小组 @ZLH
日报订阅地址:
独立日报订阅地址:
社区学习交流平台订阅:
评论区
写评论还没有评论