pub ThisWeekInRust {} – Telegram
pub ThisWeekInRust {}
992 subscribers
2 photos
2.41K links
Handpicked Rust updates,
delivered to your telegram.

Contacts: @sergeysova
Reposted from: https://this-week-in-rust.org
Source code: https://github.com/sergeysova/this_week_in_rust.rs
Another: @this_week_in_react
Download Telegram
Crate of the week: kajiya

This week's crate is kajiya, an experimental real-time global illumination renderer made with Rust and Vulkan.
Updates from core

miri: provide slightly better notes when tracking a pointer tag
rust-lang/miri/pull/1945

backport LLVM changes to disable deferred inlining
rust-lang/rust/pull/92110

fix duplicate derive clone suggestion
rust-lang/rust/pull/91544

perf: change Backtrace::enabled atomic from SeqCst to Relaxed
rust-lang/rust/pull/92139

perf: eliminate ObligationCauseData
rust-lang/rust/pull/91844

fix bad caching of ~const Drop bounds
rust-lang/rust/pull/92149

constify core::intrinsics::black_box and core::hint::black_box
rust-lang/rust/pull/92226

make PTR::as_ref and similar methods const
rust-lang/rust/pull/91823

RawVec: don't recompute capacity after allocating
rust-lang/rust/pull/92220

allow reverse iteration of lowercase'd/uppercase'd chars
rust-lang/rust/pull/88858

stabilise entry_insert
rust-lang/rust/pull/90345

suggest adding #[cfg(test)] to a test module
rust-lang/rust/pull/91770

cargo: make levenshtein distance case insensitive.
rust-lang/cargo/pull/10224

clippy: add suggestion for neg_multiply lint
rust-lang/rust-clippy/pull/8144

clippy: fix iter_skip_next false positives
rust-lang/rust-clippy/pull/8133

clippy: improve unwrap_or_else_default when handling unwrap_or_else(XXX::new)
rust-lang/rust-clippy/pull/8163

clippy: fix shadow_reuse false negative for if let bindings
rust-lang/rust-clippy/pull/8165

clippy: fix an ICE on unwrapping a None
rust-lang/rust-clippy/pull/8167

clippy: new lint: init-numbered-fields
rust-lang/rust-clippy/pull/8170

rustfmt: fix static async closure qualifier order
rust-lang/rustfmt/pull/5150

rustfmt: retain qualified path when rewriting struct literal expressions
rust-lang/rustfmt/pull/5152
Updates from Rust Community

Project/Tooling Updates
Hello, youki! (low-level container runtime written in Rust)
www.utam0k.jp

Nushell 0.42
www.nushell.sh

This Year in Wgpu - 2021
gfx-rs.github.io

SixtyFPS (GUI crate): 2021 in Review
sixtyfps.io

BonsaiDb December Update: Finishing up alpha 1
community.khonsulabs.com

NAPI-RS 2.0 released
napi.rs

This Year in Embedded Rust: 2021 Edition
blog.rust-embedded.org

Rust Analyzer Changelog #108
rust-analyzer.github.io

End of year 2021: 20 months of Gitoxide
Byron/gitoxide/discussions/285

This week in Databend #22: an elastic and reliable cloud warehouse
weekly.databend.rs

Research
Deadlock-free asynchronous message reordering in Rust with multiparty session types
arxiv.org

Observations/Thoughts
Thoughts on Context and Capabilities in Rust
jam1.re

My negative views on Rust
chrisdone.com

Learning Rust – Why now?
garrellco.com

[audio] What's New in Rust 1.56 and 1.57
rustacean-station.org

[audio] Code Like a Pro in Rust with Brenden Matthews
rustacean-station.org

Rust Walkthroughs
Vange-rs: WebAssembly in Rust
https://caiiiycuk.medium.com/vange-rs-webassembly-in-rust-498e2f960a04

Writing a minimal Lua implementation with a virtual machine from scratch in Rust
notes.eatonphil.com

Bringing Rust to Space - Setting up a Rust ecosystem for the VA108XX MCU family
robamu.github.io

Scala and Rust interoperability via JNI
engineering.avast.io

Writing a prometheus exporter in rust from idea to grafana chart
mateusfreira.github.io

Futuristic Rust: context emulation
haibane-tenshi.github.io

Mocking HTTP Services in Rust
alexliesenfeld.com

LLVM Infrastructure and Rust
www.bexxmodd.com

Making Games in Rust - Part 6 - Generating a Map
dev.to

Procedural Macros: Parsing custom syntax
blog.turbo.fish

A Data Pipeline for Go Trains Delay Analysis — ML in Action with Rust
towardsdatascience.com

[video] Tetris in Rust from scratch
www.youtube.com

[video] Rust Modules - Explained Like I'm 5
www.youtube.com

[video] I'm learning Rust - Enums, patterns, and traits
www.youtube.com

[FR] [video] Parlons peu, parlons Rust!
www.youtube.com

[ZH] Rust性能评估与调优实践
zhuanlan.zhihu.com
Crate of the week: zoxide

This week's crate is zoxide, a smarter cd command.
Updates from core

allow loading LLVM plugins with both legacy and new pass manager
rust-lang/rust/pull/91125

suggest while let x = y when encountering while x = y
rust-lang/rust/pull/92402

refactor variance diagnostics to work with more types
rust-lang/rust/pull/89336

extend check for UnsafeCell in consts to cover unions
rust-lang/rust/pull/90383

parse and suggest moving where clauses after equals for type aliases
rust-lang/rust/pull/92118

relax priv-in-pub lint on generic bounds and where clauses of trait impls
rust-lang/rust/pull/90586

perf: store liveness in interval sets for region inference
rust-lang/rust/pull/90637

add try_reserve and try_reserve_exact for OsString
rust-lang/rust/pull/92338

support \[x; n\] expressions in concat_bytes!
rust-lang/rust/pull/92066

std-simd: impl std::simd::StdFloat
rust-lang/portable-simd/pull/219

rustdoc: use ThinVec for GenericArgs bindings
rust-lang/rust/pull/92395

clippy: extend unused_io_amount to cover async io
rust-lang/rust-clippy/pull/8179

clippy: fix enum_variants false positive on prefixes that are not camel-case
rust-lang/rust-clippy/pull/8127

clippy: fixed issues with to_radians and to_degrees lints
rust-lang/rust-clippy/pull/8187

clippy: limit the identity_op lint to integral operands
rust-lang/rust-clippy/pull/8183

clippy: erasing_op lint ignored when operation Output type is different from the type of constant 0
rust-lang/rust-clippy/pull/8204

clippy: perf: cache test item names
rust-lang/rust-clippy/pull/8182

clippy: fix redundant_closure fp with Rc<F>/Arc<F>
rust-lang/rust-clippy/pull/8193

clippy: wrong_self_convention: match SelfKind::No more restrictively
rust-lang/rust-clippy/pull/8208

rustfmt: do not flatten match arm block with leading attributes
rust-lang/rustfmt/pull/5158

rustfmt: improve out of line module resolution
rust-lang/rustfmt/pull/5142

rustfmt: support parsing of asm! args
rust-lang/rustfmt/pull/5156
Updates from Rust Community

Newsletters
Rust Nigeria #1
rustnigeria.curated.co

Project/Tooling Updates
rust-analyzer in 2021
rust-analyzer.github.io

rust-analyzer changelog #110
rust-analyzer.github.io

The year 2021 in Dimforge and our objectives for 2022
dimforge.com

This week in Fluvio #18: the programmable streaming platform
www.fluvio.io

What's new in SeaORM 0.5.0
www.sea-ql.org

Ezio
www.ncameron.org

SixtyFPS (GUI crate): Changelog for 3rd of January 2022
sixtyfps.io

Introducing Dioxus v0.1
dioxuslabs.com

SNAFU 0.7 Released
users.rust-lang.org

hyper-ish 2021 in review
seanmonstar.com

This Week in Glean: Glean in 2021
fnordig.de

This week in Databend #23: an elastic and reliable cloud warehouse
weekly.databend.rs

Observations/Thoughts
Ranges and suffering
kaylynn.gay

Why is my Rust build so slow?
fasterthanli.me

Implementing Spinlock for RISC-V OS in Rust
vmm.dev

Writing bindings upside down
ilyabylich.svbtle.com

Rust 2021 – Looking Back and Forth
llogiq.github.io

How a Single Line of Code Made a 24-core Server Slower Than a Laptop
pkolaczk.github.io

In Defense of Async: Function Colors Are Rusty
www.thecodedmessage.com

Rust and Valgrind
nnethercote.github.io

Porting Rust's std to rustix
blog.sunfishcode.online

Improved portability and performance 🦀
pngquant.org

Thoughts on return, break and continue
blog.oberien.de

Parsing Decimals 4 times faster
cantortrading.fi

Beyond the Borrow Checker: Differential Fuzzing
tiemoko.com

Rust Walkthroughs
Don't shell out!
fasterthanli.me

12 Rust Tips and Tricks you might not know yet
federicoterzi.com

Indexing Strings in Rust and TypeScript: A Case Study of String
dawchihliou.github.io

Safe && Portable Data Structure Design
tiemoko.com

The joy of building a ray tracer, for fun, in Rust
blog.singleton.io

An Introduction To Session-based Authentication In Rust
www.lpalmieri.com

Profiling linkers
fasterthanli.me

Debian's approach to Rust - Dependency handling
diziet.dreamwidth.org

Nine Rules for Writing Python Extensions in Rust & Rayon
towardsdatascience.com

Why Rust enums are so cool
hashrust.com

[DE] Auf Nummer sicher: Sicheres Programmieren mit Rust
www.heise.de

[series] [video] Let's build a voice journal in Rust | Ep. 1: audio I/O, SQlite, CLI args
www.youtube.com

[series] [video] Rust Embedded for STM32 Microcontrollers - Intro
www.youtube.com

Miscellaneous
Fluvio SmartModules with user-defined parameters
www.infinyon.com

[Audio] LibertyOS with Daniel Teberian
rustacean-station.org

[Video] Web api benchmarking: Rust (Axum) vs Rust (Warp)
www.youtube.com

[Video] Adding while statements to Rena
www.youtube.com
👍1
Crate of the week: fltk-rs

This week's crate is fltk-rs, a crate with bindings to the FLTK GUI toolkit.
Updates from core

allow _ as the length of array types and repeat expressions (this implements the closed RFC PR #2545)
rust-lang/rust/pull/91907

cg: split dwarf for crate dependencies
rust-lang/rust/pull/89819

suggest single quotes when char expected, str provided
rust-lang/rust/pull/92507

add a query for resolving an impl item from the trait item
rust-lang/rust/pull/90639

miri: exclude mutable references to !Unpin types from uniqueness guarantees
rust-lang/miri/pull/1952

perf: do not use LEB128 for encoding u16 and i16
rust-lang/rust/pull/92314

rustc_metadata: optimize and document module children decoding
rust-lang/rust/pull/92086

normalize generator-local types with unevaluated constants
rust-lang/rust/pull/92636

normalize struct tail type when checking Pointee trait
rust-lang/rust/pull/92248

constify Box<T, A> methods
rust-lang/rust/pull/91884

do not hash leading zero bytes of i64 numbers in Sip128 hasher
rust-lang/rust/pull/92103

implement TryFrom<char> for u8
rust-lang/rust/pull/84640

implement const casts of raw pointers
rust-lang/rust/pull/92657

stabilize #[feature(available_parallelism)]
rust-lang/rust/pull/92632

stabilize result_cloned and result_copied
rust-lang/rust/pull/92483

modifications to std::io::Stdin on Windows so that there is no longer a 4-byte buffer minimum in read()
rust-lang/rust/pull/91754

core::ops::unsize: improve docs for DispatchFromDyn
rust-lang/rust/pull/91587

hashbrown: don't hash the key when searching in an empty table
rust-lang/hashbrown/pull/305

cargo: support rustflags per profile
rust-lang/cargo/pull/10217

cargo: be resilient to most IO error and filesystem loop while walking dirs
rust-lang/cargo/pull/10214

rustdoc: introduce a resolver cache for sharing data between early doc link resolution and later passes
rust-lang/rust/pull/92608

rustdoc: resolve associated traits for non-generic primitive types
rust-lang/rust/pull/92443

docs.rs: add "y" shortcut for permalink
rust-lang/docs.rs/pull/1583

clippy: better detect when a field can be moved from in while_let_on_iterator
rust-lang/rust-clippy/pull/8221

clippy: consider auto-deref when linting manual_swap
rust-lang/rust-clippy/pull/8220

clippy: fix type_repetition_in_bounds
rust-lang/rust-clippy/pull/8224

clippy: cover trait for trait_duplication_in_bounds
rust-lang/rust-clippy/pull/8252

clippy: fix iter_not_returning_iterator
rust-lang/rust-clippy/pull/8228
Updates from Rust Community

Official
1.58.0 pre-release testing
blog.rust-lang.org

Foundation
Happy New Year, Rustaceans
foundation.rust-lang.org

Newsletters
This Month in Rust OSDev (December 2021)
rust-osdev.com

Project/Tooling Updates
Rust Analyzer Changelog #111
rust-analyzer.github.io

rustc_codegen_gcc: Progress Report #7
blog.antoyo.xyz

Bevy 0.6
bevyengine.org

rg3d 0.24 Feature Highlights
rg3d.rs

Lishwist (beta)
blog.polaris64.net

Rust on Espressif chips - 10-01-2022
mabez.dev

This week in Fluvio #19: the programmable streaming platform
www.fluvio.io

The engine was renamed to Fyrox
rg3d.rs

Observations/Thoughts
Dyn async traits, part 7: a design emerges?
smallcultfollowing.com

Rust in 2022
www.ncameron.org

Bringing include_dir Into the Modern Era
adventures.michaelfbryan.com

Rust Async and the Terrible, Horrible, No Good, Very Bad Day
https://kevinhoffman.medium.com/rust-async-and-the-terrible-horrible-no-good-very-bad-day-348ebc836274

Crate of the Week second chance list
briankung.dev

How we built a VS Code extension with Rust, WebAssembly, and TypeScript
www.osohq.com

App and OS Virtualization in Rust using crosvm
blog.openw3b.org

Rust 2030 Christmas list: Inout methods
poignardazur.github.io

What does a Rustc Reading Club do?
https://mojosd.medium.com/what-does-a-rustc-reading-club-do-8c9f9b336ff4

Why I Use a Debugger
blog.pnkfx.org

[audio] Yew with Julius Lungys
rustacean-station.org

[video] Flying High with Flutter #40
www.youtube.com

[video] The Downside of Rust
www.youtube.com

Research
Rast: A Language for Resource-Aware Session Types
arxiv.org

RISE & Shine: Language-Orientated Compiler Design
arxiv.org

SixtyFPS (GUI crate): Changelog for 9th of January 2022
sixtyfps.io

This week in Databend #24: an elastic and reliable cloud warehouse
weekly.databend.rs

Rust Walkthroughs
Three Kinds of Polymorphism in Rust
www.brandons.me

How Bevy uses Rust traits for labeling
deterministic.space

Parsing compressed files efficiently with Rust
edgarluque.com

Rust Any Part 1: Extension Maps in Rust
lucumr.pocoo.org

Rust Any Part 2: As-Any Hack
lucumr.pocoo.org

How to Implement a Naive Bayes Classifier with Rust
www.freecodecamp.org

Adding parallelism to your Rust iterators with dpc-pariter
dpc.pw

Parsing Text with Nom
blog.adamchalmers.com

Implementing a metronome with Rust and Flutter
beijaflor.io

Making Games in Rust - Part 9 - Main Menu Screen
dev.to

Emulating the Sega Genesis - Part I
jabberwocky.ca

How to install cargo-outdated in OSX without homebrew
estada.ch

Async Rust From The Ground Up: Concurrency With Threads
ibraheem.ca

Secure and immutable development environments with Dev Containers
kerkour.com

[ZH] 2021 年 Rust 生态调研报告 | 星辰大海(上篇)
zhuanlan.zhihu.com

Miscellaneous
Let's take a moment to thank Joshua Nelson for his work on rustdoc
www.reddit.com

Could Rust be the Future of JavaScript Infrastructure?
thenewstack.io

Rust Memory Layout Optimization (Enum)
frehberg.com
Crate of the week: rustix

This week's crate is rustix, a crate with safe bindings to POSIX-ish syscalls.
Updates from core

remove deprecated LLVM-style inline assembly
rust-lang/rust/pull/92816

optimize impl_read_unsigned_leb128
rust-lang/rust/pull/92604

reduce use of LocalDefId <-> HirId maps
rust-lang/rust/pull/90146

store a Symbol instead of an Ident in VariantDef/FieldDef
rust-lang/rust/pull/92533

partially stabilize maybe_uninit_extra
rust-lang/rust/pull/92768

add {Add, Sub, Mul, Div, Rem, BitXor, BitOr, BitAnd}{, Assign} to Saturating
rust-lang/rust/pull/92356

futures: fix stacked borrows violations in waker_ref and FuturesUnordered
rust-lang/futures-rs/pull/2550

rustdoc: avoid many Symbol to String conversions
rust-lang/rust/pull/91948

clippy: new lint: iter_overeager_cloned
rust-lang/rust-clippy/pull/8203

clippy: add manual_bits lint
rust-lang/rust-clippy/pull/8213

clippy: add borrow_as_ptr lint
rust-lang/rust-clippy/pull/8210

clippy: allow primitive types in disallowed_methods
rust-lang/rust-clippy/pull/8112

clippy: apply not_unsafe_ptr_arg_deref to type aliases
rust-lang/rust-clippy/pull/8273

clippy: don't lint if_same_then_else with if let conditions
rust-lang/rust-clippy/pull/8297

clippy: downgrade mutex_atomic to nursery
rust-lang/rust-clippy/pull/8260

clippy: erase late bound regions in iter_not_returning_iterator
rust-lang/rust-clippy/pull/8287

clippy: fix cmp_owned suggestion flipping the comparison
rust-lang/rust-clippy/pull/8299

clippy: fix deref_addrof
rust-lang/rust-clippy/pull/8268

clippy: fix implicit_clone for &&T
rust-lang/rust-clippy/pull/8231

clippy: fix manual_memcpy
rust-lang/rust-clippy/pull/8226

clippy: fix cropped or_fun_call hint
rust-lang/rust-clippy/pull/8292

clippy: handle implicit named arguments in useless_format
rust-lang/rust-clippy/pull/8295

clippy: move return_self_not_must_use to pedantic
rust-lang/rust-clippy/pull/8302

thorin: performance improvements
rust-lang/thorin/pull/14
Updates from Rust Community

Official
Announcing Rust 1.58.0
blog.rust-lang.org

Project/Tooling Updates
IntelliJ Rust Changelog #163
intellij-rust.github.io

Rust Analyzer Changelog #112
rust-analyzer.github.io

SixtyFPS (GUI crate): Changelog for 16th of January 2022
sixtyfps.io

Announcing Parcel CSS
parceljs.org

Announcing the sd-notify crate
blog.dend.ro

gtk-rs 0.15 / gtk4-rs 0.4 release
gtk-rs.org

Announcing Relm4 0.4
aaronerhardt.github.io

Quickwit 0.2 brings full-text search to ClickHouse and Kafka!
quickwit.io

Introducing the new DNSimple Rust Client
blog.dnsimple.com

This week in Databend #25: an elastic and reliable cloud warehouse
weekly.databend.rs

Benchmarking relational data in BonsaiDb
bonsaidb.io

[DE] Programmiersprache: Rust 1.58 erweitert Format-Strings und verschmälert den Pfad
www.heise.de

Observations/Thoughts
Async Rust in Practice: Performance, Pitfalls, Profiling
www.scylladb.com

Format Strings in Rust 1.58
www.rustnote.com

Making Your Game Go Fast by Asking Windows Nicely
www.anthropicstudios.com

Binary Tree Insertion in Rust
dawchihliou.github.io

Investigating Memory Allocations in Rust
ysantos.com

Using Rustlang’s Async Tokio Runtime for CPU-Bound Tasks
thenewstack.io

Digital Audio Synthesizer in Rust
0xc45.com

A path towards stable generic const expressions
lcnr.de

Six Nice Things About Rust
sep.com

Rust Walkthroughs
Tutorial: Writing a Tiny Rust Game Engine for Web
ianjk.com

Mapping my walks with OSRM and Rust
blog.dend.ro

Create a desktop app in Rust using Tauri and Yew
dev.to

Fast access to regional AWS endpoints from Cloudflare Workers
noserve.rs

How to securely encrypt a file with an insecure password in Rust (using Streaming Encryption + Argon2)
kerkour.com

[video] I'm learning Rust - Cargo, documentation, user input, and JSON files
www.youtube.com

[video] Implementing Hazard Pointers in Rust (part 4/4)
www.youtube.com

[series] [video] Writing a Programming Language (in Rust) 10: Implementing Objects
www.youtube.com

[series] [video] Writing a Programming Language (in Rust) 11: Object Destructuring (Part 1)
www.youtube.com

Miscellaneous
Creating social sharing images in Rust
hashrust.com

Writing a Fluent Bit input plugin in Rust
fredrik-jansson-se.github.io

The 10 books that helped me, as a hobbyist, on my journey to learn Rust to re-code a Django application
www.reddit.com

Rewriting my toy blockchain in Rust
ezzeriesa.notion.site

Rust on Apache NuttX OS
lupyuen.github.io

An implementation of the NTFS filesystem in a Rust crate
colinfinck.de

[audio] Lumen with Paul Schoenfelder
rustacean-station.org
Crate of the week: cargo-release

This week's crate is cargo-release, a cargo subcommand that makes every crate release a breeze.
Updates from core

LLVM on AArch64/GlobalISel: fix incorrect handling of fp truncating stores
rust-lang/llvm-project/pull/127

show a more informative panic message when DefPathHash does not exist
rust-lang/rust/pull/93098

only suggest adding ! to expressions that can be macro invocation
rust-lang/rust/pull/93061

point at correct argument when async fn output type lifetime disagrees with signature
rust-lang/rust/pull/92183

change lint message to be stronger for &T → &mut T transmute
rust-lang/rust/pull/92704

improve string concatenation suggestion
rust-lang/rust/pull/92843

formally implement let chains
rust-lang/rust/pull/88642

implement #[rustc_must_implement_one_of] attribute
rust-lang/rust/pull/92164

allow eq constraints on associated constants
rust-lang/rust/pull/87648

check const Drop impls considering ~const Bounds
rust-lang/rust/pull/93028

add ~const bound test for negative impls
rust-lang/rust/pull/92997

fix ICEs related to Deref<Target=[T; N]> on newtypes
rust-lang/rust/pull/92640

disable drop range tracking in generators
rust-lang/rust/pull/93165

directly use ConstValue for single literals in blocks
rust-lang/rust/pull/92780

add preliminary support for inline assembly for msp430
rust-lang/rust/pull/93219

let qpath contain NtTy: <$:ty as $:ty>::…
rust-lang/rust/pull/91150

make Decodable and Decoder infallible
rust-lang/rust/pull/93066

remove a Span from hir::ExprKind::MethodCall
rust-lang/rust/pull/92787

emit simpler code from format_args
rust-lang/rust/pull/91359

fix CVE-2022-21658 (symbolic link timing attack in std::fs::remove_dir_all)
rust-lang/rust/pull/93112

implement RFC 3151: Scoped threads
rust-lang/rust/pull/92555

improve capacity estimation in Vec::from_iter
rust-lang/rust/pull/92138

little improves in CString::new when creating from slice
rust-lang/rust/pull/92124

add MaybeUninit::(slice_)as_bytes(_mut)
rust-lang/rust/pull/89747

add Option::is_some_with and Result::is_{ok, err}_with
rust-lang/rust/pull/93051

add log2 and log10 to NonZeroU*
rust-lang/rust/pull/92956

std: implement try_reserve and try_reserve_exact on PathBuf
rust-lang/rust/pull/92513

impl Not for ! (did you guess that "not never" is still "never"?)
rust-lang/rust/pull/91122

stabilize arc_new_cyclic
rust-lang/rust/pull/90666

stabilize vec_spare_capacity
rust-lang/rust/pull/93016

stabilize -Z print-link-args as --print link-args
rust-lang/rust/pull/91606

cargo: error when setting crate type of both dylib and cdylib in library
rust-lang/cargo/pull/10243

clippy: add msrv config for map_clone
rust-lang/rust-clippy/pull/8280

clippy: check usages in ptr_arg
rust-lang/rust-clippy/pull/8271

clippy: don't suggest an empty variant name in enum_variant_names
rust-lang/rust-clippy/pull/8329

clippy: fix needless_borrow causing mutable borrows to be moved
rust-lang/rust-clippy/pull/8217

clippy: needless_lifetimes: ignore lifetimes in explicit self types
rust-lang/rust-clippy/pull/8278

clippy: trait_duplication_in_bounds checks path segments for trait items
rust-lang/rust-clippy/pull/8315

clippy: fix needless_question_mark not considering async fn
rust-lang/rust-clippy/pull/8311

clippy: fix op_ref false positive
rust-lang/rust-clippy/pull/8298
Updates from Rust Community

Official
Announcing Rust 1.58.1
blog.rust-lang.org

Security advisory for the standard library (CVE-2022-21658)
blog.rust-lang.org

Rust Compiler January 2022 Steering Cycle
blog.rust-lang.org

Project/Tooling Updates
Rust Analyzer Changelog #113
rust-analyzer.github.io

SixtyFPS (GUI crate): Changelog for 23th of January 2022
sixtyfps.io

Settings sync browser addon for rustdoc
gitlab.com

Dotenv-linter v3.2.0: Overview
dotenv-linter.github.io

youki 0.0.2 release
containers/youki/releases/tag/v0.0.2

This week in Databend #26: an elastic and reliable cloud warehouse
weekly.databend.rs

Newsletters
This Month in Rust GameDev #29 - December 2021
gamedev.rs

Research
DuVisor: a User-level Hypervisor Through Delegated Virtualization
arxiv.org

Observations/Thoughts
Being Fair about Memory Safety and Performance
www.thecodedmessage.com

Why Static Languages Suffer From Complexity
hirrolot.github.io

Async destruction on stable rust
vzvezda/asyncdrop/blob/main/article/async-dest.md

async-await: Cooperative vs Preemtive scheduling
kerkour.com

Detect unsigned integer underflow
frehberg.com

Non-Lazy Futures Considered Harmful
swatinem.de

Part 1: The life of an optimization barrier
blog.trailofbits.com

On Rust in Webdev
radekmie.github.io

Unsoundness in owning_ref
noamtashma/owning-ref-unsoundness

Type-Driven Development
duesee.dev

Rust Programming, What to Look Forward to in 2022
https://chester-beard.medium.com/rust-programming-what-to-look-forward-to-in-2022-2e041258f750

Rust Walkthroughs
Clean and Scalable Architecture for Rust Web Applications
kerkour.com

Building fast Wikipedia bots in Rust
blog.legoktm.com

Futures and Tasks: A tale of concurrency and parallelism
swatinem.de

Lowering async await in rust
wiki.cont.run

Publishing to crates.io
www.printlnhello.world

Hello, Microcontroller! - Demystify microcontrollers by programming one in ~100 lines of dependency-free Rust
medium.com/tempus-ex

Rain's Rust CLI recommendations
rust-cli-recommendations.sunshowers.io/

Taking Rust for a Ride to Azeroth: What writing an AH Scanner in Rust taught me
medium.com/digitalfrontiers

On self-modifying executables in Rust
blog.dend.ro

Using tree data structures to implement terminal split panes - more fun than it sounds
blog.warp.dev

Durability and Redo Logging
justinjaffray.com

[video] Messing With The Recipe
www.youtube.com

[audio] Gitoxide with Sebastian Thiel
rustacean-station.org

Miscellaneous
tyty
zackoverflow.dev
Crate of the week: html5gum

This week's crate is html5gum, a WHATWG HTML spec-compliant HTML5 tokenizer.