this post was submitted on 11 Jun 2026
81 points (100.0% liked)
Programming
27238 readers
251 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
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
No I'm not professional, maybe I'm mistaken. I just know C++ and made a few simple things, and then I tried to do a few simple things in Rust but it's almost killing me. I'm asking myself if it's worth it.
If your code touches sensitive stuff (eg. public networking) and needs to be low level, probably Rust (or another compiled memory safe language). Otherwise, just use C++.
But then what's the point of Tauri? I mean there are plenty general use projects in Tauri, why'd they chose Rust?
Do you really need tauri?
Tauri is for web devs that want to make GUIs with web tech in rust. You can do GUIs without web tech.
If you really want to make a GUI with rust, you can use iced.
If you just want a GUI with web tech, do it in JavaScript+html.
If you want a GUI without web tech and don't care the language, use a GUI toolkit for your preferred language.
Learning a GUI toolkit is hard. Learning a language is hard. Learning both at the same time is even harder than the sum.
Tauri provides native system plugins cross platform, that's what I want, paired with the fact it doesn't bundle Chromium, apps are lightweight and fast.
You can use Tauri with Iced too, it doesn't require web tech, the strong point of Tauri is the native system modules.
I thought about using native tools only but I'm planning on supporting Linux and Windows at the same time, so that's the appealing for me.
I don't know what kind of a GUI you're building, but there are simpler options than Tauri out there. Slint comes to mind.
The GUI isn't important to be honest, just anything that doesn't look too outdated. I'm more interested on cross-platform native plugins, so I don't need to write all by hand. Slint seems to be less libre than Tauri, there are pricing on their website, even tho I understand it's free, still, I prefer to keep it away from strongly backed by individual company, especially if I don't know it well.
"plugins" is not a feature. What plugin specifically do you need? Most probably you can accomplish whatever you need with a library and iced. Plugin is just a fancy word for library.
Plugin are a feature when it provides cross platform abstraction for Windows, Linux, Mac, Android and iOS.
Doing it natively means I need to make a few thousands of extra ifs and maintain all different ifs for each platform, while Tauri provides it out of the box. Such as notifications, filesystem access, file opener, auto start, window management and etc...
There are plenty of cross-platform libraries in rust. In fact, most of them are. Since Rust is cross-platform at its core.