this post was submitted on 26 Feb 2024
45 points (97.9% liked)

Rust

5654 readers
17 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

[email protected]

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS
 

What are you building with Rust?

Are you using Rust at work? Hobby projects?

Why did you choose Rust for your project?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 10 points 5 months ago* (last edited 5 months ago)

I mostly use it for hobby projects. For example:

  • lemmy alternative - I'm using Iroh and Tauri to create a distributed lemmy-like application (mostly wanted an excuse to play with async Rust)
  • Godot game projects - GDScript for most things, Rust for more intense processing - not a fan of C++, and everything else is similarly awkward, so picked Rust because I like it
  • small web projects - I built a game server that did interesting things with different socket types (websockets, TCP, and UDP); wanted correctness since I'm doing a lot of async stuff; I've used Go for this kind of thing in the past, but I don't like some of the footguns it has

I'd love to use it at work, but my team is mostly Python-centric and it's working well enough for us.