Microsoft Rust intro says "Rust is known to leak memory"

This page summarizes the projects mentioned and recommended in the original post on /r/rust

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • rust-gc

    Simple tracing (mark and sweep) garbage collector for Rust

  • Anyway, I found something recent that implements "rc" but in terms of tracing: https://github.com/Manishearth/rust-gc/ . Maybe useful for projects involving graphs of objects.

  • rust

    Empowering everyone to build reliable and efficient software.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • rfcs

    RFCs for changes to Rust

  • unsafe-code-guidelines

    Forum for discussion about what unsafe code can and can't do

  • Safety in Rust did not start from a place that was perfectly clear. Hell, some components of it still aren't quite totally clear, although it is much better than it was some years ago. I am so grateful to the Unsafe Code Guidelines Working Group for working to improve this. It's critical work.

  • tokio

    A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ...

  • UnsafeCell being transitively mutable via aliasing (&mut T implies &mut T.field; field could be UnsafeCell and wish to be shared with other threads; core traits require the &mut T to use them conveniently; sharing the UnsafeCell is then UB) makes intrusive Futures (and possibly shared Iterators) currently UB.

  • Primes

    Prime Number Projects in C#/C++/Python

  • Rust is actually pretty fast. It’s hard to rank language speeds in general, but for one specific application where many languages have been tested with the same algorithm, Rust is actually one of the fastest https://github.com/PlummersSoftwareLLC/Primes

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts