行動作業系統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的driversRingbahn是無船同志(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