this post was submitted on 02 Oct 2024
51 points (100.0% liked)

Rust

5930 readers
32 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
top 5 comments
sorted by: hot top controversial new old
[–] [email protected] 35 points 4 weeks ago (4 children)

For anyone who hasn't seen it before, Tauri is basically Electron, but it doesn't ship a full chromium browser with each application.

Basically, I hope it replaces all Electron apps. :P

[–] [email protected] 11 points 4 weeks ago

It also means that the rendering will potentially be different on each platform given they all use different native webviews (and there's no "native" webview on Linux but WebKit-gtk is the most widely used one)

[–] [email protected] 7 points 4 weeks ago

Sounds good. Does it rely on an installed browser for rendering or...

Nevermind, I'm reading it myself. I'm just so lazy ...

[–] [email protected] 4 points 4 weeks ago

Thanks! I'll be checking this out later

[–] Deebster 1 points 2 weeks ago

My hope is that something like Servo gets good enough to be included, especially if it's tree-shakable so you can only include a subset of the codebase. I don't know if that's a goal for either projects, but it would be cool - the default webviews can be quite lacking so currently you need to use a restricted set of HTML/CSS/JS to guarantee compatibility.