Rust

Tags 1 follower

Follow from the Fediverse

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

Your address is used once, to send you to your own server's follow dialog. It is never stored here.

The most endorsed users with this tag

Posts with this tag

4 posts

Filters
Heinlein Support @heinleinsupport social.heinlein-support.de

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.

👉 heinlein-support.de/schulung/…

Porträtfoto und Zitat zur Rust-Schulung

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

Rust supply chain attack security
Rust supply chain attack security

Ein HEMS für meine kleine Solaranlage

Und meine ersten Zeilen in Rust

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.

Terminalausgabe
1