• Sasquatch@lemmy.ml
    link
    fedilink
    arrow-up
    9
    arrow-down
    1
    ·
    8 months ago

    I would disadvise Rust for (most) desktop apps. There aren’t any GUI libraries yet, and the Qt bindings aren’t beginner-friendly yet.

    Unless you just meant headless desktop apps, in which case Rust is my goto

      • SeriousBug
        link
        fedilink
        English
        arrow-up
        3
        ·
        8 months ago

        You can make an app with Tauri without writing a single line of Rust though. Tauri lets you trigger most native functionality you might need from the JavaScript side. If that’s enough for what you are building then you don’t need to write any Rust. You could use a Rust web framework that compiles to WebAssembly, but you could also just use React or Svelte or whatever else.

      • lysdexic@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        8 months ago

        There’s Tauri.

        …and now your newbie has to onboard onto not only Rust (?!) but also HTML, CSS, and JavaScript to render “Hello World”.

    • calcopiritus@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      8 months ago

      There are GUI libraries. I personally use iced a lot. Even if it’s not v1.0 yet, it has many features. There are also bindings for other more common libraries such as GTK, QT and imgui. There’s also egui as a native rust alternative to imgui.