< 返回版块

Folyd 发表于 2020-10-02 17:38

移动操作系统SailfishOS支持Rust了

链接:https://forum.sailfishos.org/t/release-notes-pallas-yllastunturi-3-4-0/2258

Let's Encrypt在招SRE工程师(主要语言为Rust,Go和Python)

链接:https://www.abetterinternet.org/careers/le-sre-sw2/

深入了解Ringbahn的drivers

Ringbahn是无船同志(without boats)基于io-uring 的 安全Rust 绑定。

柏林环线(ringbanhn, Berlin Ringbahn)是一条双轨通勤铁路,环绕柏林市中心形成一个完整的环形。类似地,IO -uring是一个新的异步IO接口,Linux内核构建在双环缓冲区数据结构上。基于async/await开发,100%内存安全。

这是无船一系列解读Ringbahn原理文章中的第三篇。

链接:https://without.boats/blog/ringbahn-iii/

又一个新的Rust REPL库

作者使用Rust写了一个新的REPL库,并且还提供了两个命令p!d!,分别代表println("{}", <var>)println("{:?}", <var>)。这个REPL的原理是把用户在整个session输入的代码统一放到一个rust文件的main函数中,然后调用rustc去编译执行,把捕获到的输出信息打印出来。

rust> p! "hello world"
hello world
rust> d! "hello world".find('h')
Some(0)
rust> let x = 5
rust> let y = x + 1
rust> p! x
5
rust> p! y
6

链接:https://git.simulacrum.party/simulacrumparty/rust-repl

-- From 日报小组 Folyd, broono

社区学习交流平台订阅:

评论区

写评论

还没有评论

1 共 0 条评论, 1 页