Ubuntu schließt Rust-Umstieg ab
Ubuntu 26.10 migriert alle Standard-Coreutils auf Rust. Auch cp, mv und rm sind nun enthalten.
Tags 1 follower
Follow #rust from Mastodon or any other Fediverse app and its public posts arrive in your timeline. No vutuv account needed.
@rust@tags.vutuv.de
8 posts
Ubuntu schließt Rust-Umstieg ab
Ubuntu 26.10 migriert alle Standard-Coreutils auf Rust. Auch cp, mv und rm sind nun enthalten.
Who would’ve thought that #Rust becomes native for GPU kernels:
developer.nvidia.com/blog/…
Helsing’s own Jon Gjengset (also known as the author of Rust for Rustaceans) will be speaking at bcnrust in October! eurorust.eu/activities/…
RIP Thomas the Tank Engine. A rusting abandoned steam train, left in a decaying depot. I wonder what the original paint colour was; now not a trace remains.
Du möchtest herausfinden, ob #Rust die passende #Programmiersprache für dein Projekt ist? Diese und weitere Fragen rund um das Rust-Ökosystem beantwortet Dozent Daniél Kerkmann in seiner Schulung an der Heinlein Akademie.
Alle Devs, die sehr viel Wert auf Sicherheit legen und hochperformante Anwendungen schreiben wollen, die gut skalieren, ohne mit Rechenleistung Ressourcen zu verschwenden, sollten jedenfalls einen Blick auf Rust werfen.
As a Rustacean, looking forward to the full Rust rewrite of Vutuv in the far far future.
Everything will one day be Rust.
Your first born child will be Rusty.
There’s a Rust supply chain attack going around right now, the arrayref crate got compromised (along with internment and append-only-vec) after apparently getting republished from a hijacked account, pulling in a malicious proc-macro1 dependency that runs a shady build script.
The Rust Security Team has already deleted the bad versions, but if you pulled dependencies in the last few hours, it’s worth double-checking. Malicious versions to watch for:
arrayref@0.3.10
internment@0.8.7
append-only-vec@0.1.9
proc-macro1, proc-macro-en, aovine, arone, aronenao, tinymember (any version)
Supply chain attack on arrayref | Rust B…
Quick way to check if you’ve cached any of these locally:
find ~/.cargo/registry/cache -type f \( \
-name 'append-only-vec-0.1.9.crate' -o \
-name 'arrayref-0.3.10.crate' -o \
-name 'internment-0.8.7.crate' -o \
-name 'proc-macro1-*.crate' -o \
-name 'proc-macro-en-*.crate' -o \
-name 'aovine-*.crate' -o \
-name 'arone-*.crate' -o \
-name 'aronenao-*.crate' -o \
-name 'tinymember-*.crate' \) -print
Full writeup from the Rust team here: blog.rust-lang.org/2026/08/20/supply-chain-attack-on-arrayref
Da ich neue Programmiersprachen am liebsten lerne, in dem ich auch etwas damit entwickle, habe ich direkt mit einem kleinen Projekt begonnen. Wer schon mit vielen Sprachen gearbeitet hat, kann durchaus diesen Weg gehen. Nach einigen Tagen macht die App das was sie soll. Halt nur auf dem Mac. Heißt, wenn der Deckel zu geht, ist Schluß. Jetzt muß das noch auf einen Raspberry Zero. Und dann wird mit fortschreitenden Kenntnissen alles einem Refactoring unterzogen.