Best of RustAugust 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Getting Started – Lightning CSS

    Lightning CSS can be used as a library from JavaScript or Rust. It can also be wrapped as a plugin in other build tools, and built into Parcel out of the box. From Node First, install Lightning CSS using a package manager such as Node First. Once installed, import the module and call one of the Lightning CSS APIs.

  2. 2
    Article
    Avatar of ghblogGitHub Blog·3y

    Why Rust is the most admired language among developers

    For the eighth year in a row, Rust has topped the chart as ‘the most desired programming language’ in Stack Overflow’s annual developer survey. More than 80% of developers report that they’d like to use the language again next year. The language was created less than 20 years ago.

  3. 3
    Article
    Avatar of communityCommunity Picks·3y

    I built a garbage collector for a language that doesn't need one

    I built a garbage collector for a language that doesn’t need one. I made it in Rust, for Rust - a language designed to eliminate garbage collection and which provides few facilities for making it work properly. The core backing behind Rust’s memory model is affine typing and the borrow checker.