#Rustaceans

Oxidize Conf Sep 14-16, 2026oxidize@social.ferrous-systems.com
2026-02-06

🗣️ The Call for Proposals for #Oxidize2026 is live!

Are you using #RustLang in production? Maybe you’ve migrated from C/C++ or built something new in Rust — either way, we’d love to hear from you.

Oxidize is the leading conference for applied Rust and real-world decision-making, with past talks spanning #automotive, #AI, #robotics, and #OS development.

📅 CfP open until March 23
👉 pretalx.com/oxidize-conference

Interested in sponsoring? oxidizeconf.com/images/sponsor

#Rustaceans #RustConference

A blue square stating the start of the Call for Proposals for Oxidize 2026 in Septmeber 2026. The Call for Proposals end on 23rd March 2026.
2025-12-18
2025-12-14

Updated **Ferrocrypt** based on all the relevant feedback — thank you to everyone who took the time to review, test, and share notes. Your suggestions directly shaped this update, and it’s better for it.

github.com/alexylon/Ferrocrypt

#rust #rustlang #rustaceans #cryptography

2025-12-14

Been learning Rust and built another side project: **Sofos Code** — a fast, interactive CLI AI coding agent. It includes an interactive REPL, session history, secure sandboxed file ops, safe bash execution (for tests/build), colored diffs, web search, and optional `ripgrep` + Morph Fast Apply for ultra-fast edits.

I’d love recommendations on code structure, Rust idioms, and missing/awkward functionality:

github.com/alexylon/sofos-code

#rustlang #cli #opensource #rustaceans #rust #devtools #AI

2025-12-12

🗣️ 🦀 Calling #Rustaceans with a passion for formal verification:
We’re hiring for a three-year research role to help define #RustLang semantics, with an optional #PhD path.

👉 Details here: ferrous-systems.com/blog/resea

A blue square that says "Job Opportunity" from Ferrous Systems. Text says: Hiring: Research Engineer We're hiring for a rare role: Join us to formalize the semantics of Rust on a real, multi-year project.You'll work with leading experts, contribute to the foundations of the language, and can also be used as an opportunity to pursue a PhD alongside the work.
2025-11-27

I’m learning Rust and have been building Ferrocrypt, a small cross‑platform encryption tool (Rust core lib + CLI + Dioxus GUI + Tauri GUI).

It uses XChaCha20‑Poly1305 + Argon2id and a hybrid RSA+XChaCha20 mode with Reed–Solomon parity for header recovery.

I’d really appreciate a code review (lib/CLI/GUI, error handling, idiomatic Rust).

Repo: github.com/alexylon/Ferrocrypt

#rust #rustlang #rustaceans #dioxus #tauri #cryptography #infosec

2025-11-25

Fellow #rustaceans, my brain is currently not working great.

Is there a non-macro solution for reducing the boilerplate in a block that looks like this?

```
let result = match req {
Request::Session(session_id) => match self.session_info(&session_id) {
Ok(info) => tx.send(Ok(Response::Session(info))),
Err(err) => tx.send(Err(err)),
},
Request::SessionCreate(user_id) => match self.new_session(&user_id) {
Ok(session_id) => tx.send(Ok(Response::SessionCreate(session_id))),
Err(err) => tx.send(Err(err)),
},
Request::SessionDelete(session_id) => match self.delete_session(&session_id) {
Ok(_) => tx.send(Ok(Response::SessionDelete)),
Err(err) => tx.send(Err(err)),
},
```

#rust

Giuseppe_SalutoGiuseppe_Saluto
2025-11-10

🦀 One week after in Florence: an incredible experience!

Loved diving into super interesting topics and new perspectives on using .
Top workshop with @algo_luca and a mini-challenge won thanks to @develer
Can't wait to share the finished project.

'Slice & Dice' evening was great for networking. Big thanks to all the @rustlab staff for the delicious coffee breaks! You were exceptional.

See you next year, Rustaceans!

photo last day of conference
Giuseppe_SalutoGiuseppe_Saluto
2025-11-03

I'm currently in Florence to follow the RustLab!
For support the initiative I've chosen to take trains to minimize my impact!
Every day we can make small choices to protect the planet.

🦀 🍃 @rustlab

2025-08-28

The wait is over - we’re kicking off Rustikon 2026!

📅 Save the date: March 19-20, 2026 | Warsaw

Not just one, but two days of Poland’s signature Rust gathering! Get ready for insightful Rust talks, meeting with experts and fellow Rustaceans, and of course, fun activities, including an epic after party!!

🎟️ Super Early Bird tickets available now: rustikon.dev/tickets

2025-08-28

Rustikon 2026 confirmed!

📅 Save the date: March 19-20, 2026 | Warsaw

After your incredible response to the first edition we organized last year, we’re leveling up - not just one, but two full days of inspiring Rust talks, engaging discussions, and networking with fellow Rustaceans!

@Rustikon is built for sharing knowledge, connection and shaping the future of Rust, together!

🎟️ Get your Super Early Bird tickets now: rustikon.dev/tickets

#Rustikon #Rustikon2026 #Rust #Rustaceans #Conference

2025-08-27

Imagine this: you’re at #rustconf25, and suddenly the Rust ecosystem is under attack. What do you do? 🔥

On Sept 4, Christopher “CRob” Robinson hosts “Rusty and the Crate Escape”—an interactive tabletop adventure where you and fellow #Rustaceans must navigate a mock cybersecurity disaster.

It’s a playful mix of chaos, collaboration, and lessons on open source risk.

Learn more: rustconf.com/schedule/#1769

Register: ti.to/rustconf/2025?source=mas

#rustlang #opensource #rustconf

2025-08-20

At #RustConf25, the Community Room is your space to connect with fellow #Rustaceans in person. 🦀 Open both days of the main conference, it’s where you can present a lightning talk, start or join impromptu discussions, and collaborate on projects. Stop by Sept 3–4 in Seattle.

Register now! ti.to/rustconf/2025?source=mas
#rustlang #opensource #community #devconferences #rustconf

2025-08-08

I don't know how to investigate where SIMD would happen automatically (if at all). Like if I have a loop over a Vec<Vector3d<f64>> summing values, will it automatically utilize SIMD?

Is there a way to "turn off" SIMD, or isolate which kind of code blocks it would apply to (or if I need to do that explicitly) so I can get a better understanding of if/where it works?

#rust #rustaceans

2025-08-08

Any #rustaceans here have experience with nalgebra and SIMD? I'm looking to get a better understanding of how SIMD is integrated into nalgebra and if it is automatic.

I'm rewriting a constraint solver from Cython to Rust, and using nalgebra as the underlying vector operations library.

According to this: dimforge.com/blog/2020/03/23/s,
nalgebra automatically has support for SIMD AoSSoA, but looking at the crate, it appears there's just a set of traits that are SIMD.

#rust @rust

2025-07-25

It’s always great to drop by @hackerdojo hang out with #rustaceans 🦀🦀🦀🦀🦀 my new MacBook Air doesn’t have rust installed yet! Learned a lot about Rust being being used on android ipc (I don’t totally understand) & saw the Google security paper on rust ❤️ thanks nerds

Hey #Rustaceans #Rust #rustlang fans, I have a tough question:
Can we rewrite the US-Government in Rust? It seems to be malfunctioning!

ZeStig :emacs: :nix: :rust: :archlinux:zstg@fedia.social
2025-06-08

Why is setting up #Rust with #flycheck on #emacs so complicated? I'm using the rustc, cargo, clippy and rust-analyzer packages from oxalica's rust-overlay repo.


My Emacs config is over at
gitlab.com/zstg/nixos-config/-/blob/main/hosts/Krypton/programs/rice/stigmacs/stigmacs.org.

Any
#rustaceans facing this predicament?

flycheck-mode returns a 101.

bartosz 🚲🌳🐍🦀btel
2025-04-14

@rustlang is another organisation that quit X. They don't cite particular reasons but the decline in the "openness" of the platform which is increasingly reserved for authenticated users might be one of them. In addition, changes in the algorithm and politics might have played some role. Warm welcome to the !

(Ps if you are not familiar with , it is a modern programming language initially developed at that is getting some traction recently)

2025-04-05

Finally a crate that makes its debut out of . 😄

For those who want to *kill parents* AND let *children live*! 😇

Here is a process management crate to

- Find (easily)
- Kill (parent, family or siblings)
- Spawn detached long running processes

docs.rs/pipelight_exec/0.4.2/p

Client Info

Server: https://mastodon.social
Version: 2025.07
Repository: https://github.com/cyevgeniy/lmst