this post was submitted on 11 Jun 2026
60 points (100.0% liked)

Programming

27223 readers
297 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 3 years ago
MODERATORS
 

I decided to adventure myself in Tauri development for a personal project, I read the entire Rust official book and followed the exercises. When I first started developing it was like if nothing I learned helped for real life projects.

Now after getting betting up every single time I touch my project, it seems I'm catching things slowly.

But I've never seen such a hard modern language, I used C and C++ before and it's incomparable.

you are viewing a single comment's thread
view the rest of the comments
[–] azdle@news.idlestate.org 7 points 6 hours ago (1 children)

I'm a fairly experienced Rust Dev (I've been paid to write it since 2014). I've never use Tauri, but damn it looks complicated.

If your goal is learning rust, I'd suggest learning on something simpler. Avoid complicated "ecosystems", anything super macro heavy, or async in general. Go write code like you're a college freshman. Duplicate code, call .clone() and .unwrap() with wild abandon. There's no reason to throw all the hardest parts of the language at yourself all at once.

If your goal is ending up with a GUI application, I don't really have advice for you, I've never figured that out myself.

[–] majster@lemmy.zip 3 points 6 hours ago (1 children)

avoid async

Lots of networking libs are bases on tokio. I found it super annoying.

[–] sukhmel@programming.dev 1 points 49 minutes ago

There are more async runtimes, and imo many crates support other runtimes. it's worth getting some experience with it, anyway