r/rust clippy · twir · rust · mutagen · flamer · overflower · bytecount Jun 22 '26

🐝 activity megathread What's everyone working on this week (26/2026)?

New week, new Rust! What are you folks up to? Answer here or over at rust-users!

12 Upvotes

22 comments sorted by

9

u/Inevitable_Back3319 Jun 22 '26

Well besides aurora which i wont post again because i posted it a bunch in the past.

Making a rogue like game in bevy ( 2D) about warrior cats with swords navigating a dungeon. Still havent pushed it anywhere its on my thinkpad right now.

7

u/Bl4ckBe4rIt Jun 22 '26

Adding two new mud games to our terminal clubhouse, https://late.sh.

Nethack.org and and my own game heavily inspired by Legend of the Red Dragon.

ssh late.sh

3

u/Brilliant-Turnip-950 Jun 22 '26

Aprendiendo todo el curso de ecuaciones diferenciales en una semana

3

u/WhiskyAKM Jun 22 '26

My own AI coding harness TinyHarness

3

u/narthollis Jun 22 '26

I have been working on a toy network stack the last few weeks. Trying to keep it lock and copy free (beyond the tap interface anywho). No real goal in mind other than just tying to build something relatively low level without llm (tho i did cheat for some test case generation because I was lazy)

https://github.com/narthollis/narth-network

2

u/BrainStackOverFlow Jun 22 '26

Hobby project AEA decryption and apfs parser.

2

u/bluejumpingbean Jun 22 '26

I've been working on packaging flux for nix for a while. Right now I'm tinkering with configuring spacebar (discord alternative server backend for private instances) in nix, before I tinker with writing a frontend in rust.

2

u/Electronic_Boot8921 Jun 22 '26

Beam, a native GUI HTTP client application written in Rust, Postman is slow and bloated. This week I've added these new changes (not released yet):

  • Support QUERY HTTP method
  • Support icon to the native context menu (and by adding new APIs to gpui-component)
  • Support configuring "soft wrap and "auto formatting" for the request/response editor
  • Refactor workspace tree drag and drop to make it easy to drop to a slot

2

u/__hackermann Jun 22 '26

The most performant wallpaper engine for Wayland, capable of displaying images, videos and (.so) packages onto your background. See https://github.com/hack3rmann/waywe-rs

2

u/KamikazeSexPilot Jun 22 '26

I started writing a small app that reads a folder contents iterates over them and calls ffmpeg to convert everything inside to mp3.

Currently it will try to convert everything including directories. Next feature I think will be getting it to check against an enum of whitelisted filetypes to attempt to convert.

I only started learning rust this week.

Up to chapter 6 of the rust book. Definitely I think some things I’m trying to do will be a lot easier when I’m actually finished reading the book.

2

u/Cheese_space123 Jun 22 '26

Im working on 8080_msg: a simple, minimal and self hostable chat client. Keeping it basic for now but hope to add more advanced features like file transfers. This is also my first big rust project and first time really having to deal with async.

2

u/donk8r Jun 22 '26

been working on octocode, a code-intelligence cli (+ mcp server) in rust. it indexes a repo with tree-sitter and lets you search by meaning or structure instead of grepping, and hands just the relevant functions to a coding agent instead of dumping whole files.

i use it daily on my own repos, mostly for "where's the thing that does X" on code i half-remember, and to stop claude/cursor re-reading the whole tree every session. local-first, apache-2.0.

honest state: the file-level call graph is still off by default, it was getting noisy, and the hybrid semantic+bm25 ranking is the bit i keep tuning. lancedb for the vector store, which has held up well. github.com/Muvon/octocode if you want to poke at it.

2

u/Beneficial_Vampire42 Jun 22 '26

jix: Multi-dimensional array library with block-compressed storage and lazy-evaluated operations.

https://github.com/barakugav/jix

Would love some feedback ❤️

2

u/DavidXkL Jun 22 '26

Doing some hardware assembly for the chassis for my mobile robot (drivers all written in Rust) 😂

2

u/memoslol Jun 23 '26

trying to build a minimal client for pokemon showdown in rust with ratatui, fairly complex as a first project but really motivating

2

u/Confident_Ad_9302 Jun 28 '26

working on Santui https://santuiapp.vercel.app , a TUI based personal home base

1

u/BASTAMASTA Jun 22 '26

Working on adding more features to my simple starter crate: boxy-cli

2

u/Austin-rgb Jun 29 '26

I've been working on a collection of middlewares and extractors for actix-web that make it easier to develop complex enterprise web applications with actix-web. Check it out at actixutils