Best of RustAugust 2022

  1. 1
    Article
    Avatar of changelogChangelog·4y

    Real world application

    Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. The Electron app is written in plain-old HTML and JavaScript. The Tauri app installer is around 2,5MB (!!!), while the Electron install is around ~85MB. Tauri has many security features built-in by default. You can even explicitly enable or disable certain APIs.

  2. 2
    Article
    Avatar of gcgitconnected·4y

    How to build a (simple) blog using Rust

    Rust is an amazing language both in terms of speed of the execution and developer experience. The goal of the rewrite is to get something out which could serve as a learning example and be built upon to further my understanding of the language. For this project, serde will be used for serializing the metadata of a blog post. This is macro, or more precisely, a proc_macro.

  3. 3
    Article
    Avatar of btrprogBetter Programming·4y

    Dissecting Rust Traits to Learn Their Secrets

    The Add trait is one of the most interesting traits in Rust. Dissecting Rust Traits to Learn Their Secrets is an incredible example to learn how the tools of the traits can be pieced together to offer an amazing flexibility with a perfectly tied functionality.

  4. 4
    Article
    Avatar of gcgitconnected·4y

    Carbon: The Heir to the Mid-Level Throne

    Carbon is an experimental language created to do what Rust couldn’t do, replace C++. The major feature that will make this a viable option is Carbon’s bi-directional interoperability. It will require LLVM (Low Level Virtual Machine) and Bazel running on a WSL to use it.

  5. 5
    Article
    Avatar of hashnodeHashnode·4y

    Everything To know about Carbon Programming Language

    Google launched Carbon as the next generation of programming language. It is an open-source project that is still in the testing stage. Carbon is intended to be as analogous to C++ as TypeScript is to JavaScript and Kotlin is to Java. The introduction keywords and easy grammar of Carbon make it more appropriate than Rust.

  6. 6
    Article
    Avatar of changelogChangelog·4y

    pintariching/rustle: Svelte compiler rewritten in Rust

    Rustle The Svelte compiler, rewritten in Rust, is still a big work in progress. I came up with the name rustle by combining rust and svelte (ruslte => rustle) The project is open to naming suggestions!

  7. 7
    Article
    Avatar of logrocketLogRocket·4y

    The state of Rust GUI libraries

    Rust has been growing in popularity over time, likely due to its flexibility and vibrant open source community. You can use many packages and crates to develop fast, complex GUI applications in Rust. We’ll also compare these GUI libraries and discuss how they’re a good choice for building your GUI application.