rustc-dev-guide VS lang-team

Compare rustc-dev-guide vs lang-team and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
rustc-dev-guide lang-team
7 25
1,575 190
2.5% 2.6%
9.3 7.8
8 days ago about 1 month ago
HTML JavaScript
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

rustc-dev-guide

Posts with mentions or reviews of rustc-dev-guide. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-17.
  • The rust project has a burnout problem
    3 projects | news.ycombinator.com | 17 Jan 2024
    yes, it's possible! that list doesn't exist today but i would love to create it. i wrote a draft a few years ago before shifting to other work; someone recently expressed interest in reviving that project: https://github.com/rust-lang/rustc-dev-guide/pull/1463

    <3 i'm glad you enjoyed it

  • How Rust transforms into Machine Code.
    5 projects | /r/rust | 3 Jun 2023
    It's possible - you could open an issue on the rustc-dev-guide repo if you'd like. https://github.com/rust-lang/rustc-dev-guide/
  • Accessible Documentation?
    6 projects | /r/rust | 21 Nov 2022
    I'm very confident that this would be well received! I'm not sure where the source code for rustdoc lives, but I know that the internals getting started guide is here: https://github.com/rust-lang/rustc-dev-guide/blob/master/src/rustdoc.md. That would be a good place to start if you're looking into how the HTML is generated.
  • Yet another command line argument parser: bpaf 0.5.5
    7 projects | /r/rust | 2 Sep 2022
    Do you have links to any good info about how much rustc reuses from previous runs? This is the first time i hear about reuse at the function level. I guess the rustc-dev-guide would be a good place for me to start?
  • Discussion Thread
    1 project | /r/neoliberal | 27 Aug 2022
    Inspired by the rust compiler, you could represent the entire state of the application as a graph of operations with inputs and outputs. You can hash all the inputs and use that to memoize the operations, so that you don't have to repeat them, you can cache them in memory or on disk, and it helps you track which parts of the app state actually change between user operations and you can then be sure you put all the changes in the undo/redo stack, and so that you don't have to store duplicate copies of things that don't change. (How's that for a run-on sentence?) You could run a general binary diff algorithm between subsequent versions of the same operation with different inputs to try to reduce the memory used by storing the different versions, and have specialized diff algorithms for specific types of data. (How do you identify related operations? How much CPU does this use?) You can have a background task that compresses older versions with LZ4 or zstd. You can have a background task that saves older versions on-disk when there's memory pressure.
  • What’s everyone working on this week (11/2022)?
    7 projects | /r/rust | 14 Mar 2022
    I contributed a couple small bugfixes for issues I ran into along the way as well. 1, 2
  • Best practices for writing code comments
    1 project | news.ycombinator.com | 24 Dec 2021
    It's rustdoc: https://github.com/rust-lang/rustc-dev-guide/blob/master/src...

    > Rustdoc actually uses the rustc internals directly. It lives in-tree with the compiler and standard library. This chapter is about how it works. For information about Rustdoc's features and how to use them, see the Rustdoc book. For more details about how rustdoc works, see the "Rustdoc internals" chapter.

lang-team

Posts with mentions or reviews of lang-team. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-08.
  • Totally_safe_transmute, Line-by-Line
    2 projects | news.ycombinator.com | 8 Jan 2024
    The Rust team did a deep dive on the bug in 2020, which has some more details that might be helpful to understanding what's going on: https://github.com/rust-lang/lang-team/blob/master/design-me....
  • Using enums to represent state in Rust
    6 projects | news.ycombinator.com | 22 Sep 2023
    I haven't been following this closely, so I looked it up and it looks like that's not going to happen for the foreseeable future unfortunately:

    https://github.com/rust-lang/lang-team/issues/122

    Kind of a shame, but wrapper types work well enough that I understand. It does look like if there was someone with enough resources to make it happen that they'd be receptive to it.

  • Should Error enums be `non_exhaustive`?
    4 projects | /r/rust | 23 May 2023
  • What features would you like to see in rust?
    13 projects | /r/rust | 2 Apr 2023
    Did you read the link the original comment posted? I think that explains the idea rather well https://github.com/rust-lang/lang-team/issues/122
  • Pattern matching tuple variant of enum without deconstructing tuple
    2 projects | /r/rust | 29 Mar 2023
    A quick search pulled up this as a likely candidate for most recent discussion of it but it goes back at least to 2016 with this RFC.
  • State Machines III: Type States
    2 projects | /r/rust | 3 Jan 2023
    There have been at least one proposal and RFC in the past that seem to be deferred or closed due to bandwidth issues.
  • The type system is a programmer's best friend
    9 projects | /r/programming | 1 Nov 2022
    That's what Rust does, and it's considered a problem (that the devs are regrettably unable to reasonably solve) rather than a good thing.
  • In-line crates
    1 project | /r/rust | 25 Oct 2022
    Lang had some conversations about this: https://github.com/rust-lang/lang-team/issues/139
  • LKML: Linus Torvalds: Re: [PATCH v9 12/27] rust: add `kernel` crate
    4 projects | /r/rust | 2 Oct 2022
    The design of Rust panics unconditionally aborts the program if you panic while unwinding, and some people even want to abort if you panic in Drop.
  • Isolates, MicroVMs, and WebAssembly (In 2022)
    10 projects | news.ycombinator.com | 26 Sep 2022
    > Better interoperability

    AFAIK, the examples you give all target a basic C ABI [0] or can be made to target the same ABI. In Rust, it means targeting wasm32-unknown-emscripten

    The Rust team is also working on a "WASM ABI"[1] which would be useful in taking advantage of stuff like multi-value returns, and other compilers could just choose to target that. More likely, the C ABI on WASM will be updated to account for missing features, and that'll be the standard for interoperability in the WASM ecosystem.

    [0]: https://github.com/WebAssembly/tool-conventions/blob/main/Ba...

    [1]: https://github.com/rust-lang/lang-team/blob/master/design-me...

What are some alternatives?

When comparing rustc-dev-guide and lang-team you can also consider the following projects:

bpaf - Command line parser with applicative interface

Idris2 - A purely functional programming language with first class types

sensible-env-logger - A pretty, sensible, easy-to-use logger for Rust.

rfcs - RFCs for changes to Rust

triagebot - Automation/tooling for Rust spaces

diamond-types - The world's fastest CRDT. WIP.

isahc - The practical HTTP client that is fun to use.

semver-trick - How to avoid complicated coordinated upgrades

MuOxi - MuOxi, a modern mud game engine written in Rust.

Cargo - The Rust package manager

708 - Parameter passing and initialization