rules_rust VS cargo-chef

Compare rules_rust vs cargo-chef and see what are their differences.

cargo-chef

A cargo-subcommand to speed up Rust Docker builds using Docker layer caching. (by LukeMathWalker)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
rules_rust cargo-chef
9 18
610 1,519
4.1% -
9.6 7.2
1 day ago 17 days ago
Starlark Rust
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.

rules_rust

Posts with mentions or reviews of rules_rust. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-14.
  • NixOS: Declarative Builds and Deployments
    13 projects | news.ycombinator.com | 14 Jan 2024
    The same reason Bazel builds avoid using Cargo when building Rust software, so I'll describe why Bazel would do this:

    - Bazel wants to cache remote resources, like each respective crate's source files.

    - Bazel then wants to build each crate in a sandbox, and cache the build artifacts

    This is an established practice, and Nix wants to drive the build for the same reasons.

    See:

    - https://github.com/bazelbuild/rules_rust

    - https://github.com/google/cargo-raze

  • Rust fact vs. fiction: 5 Insights from Google's Rust journey in 2022
    5 projects | /r/rust | 27 Jun 2023
    To answer your question, I don't know if Soong or Bazel can reuse the files produced by an incremental Rust compilation. I tried searching the rules_rust repository and found some discussions, but nothing that clearly told me "Yes, this is supported".
  • When to Use Bazel?
    13 projects | news.ycombinator.com | 13 Sep 2022
    Bazel doesn't allow targeting a lot of platforms (especially embedded) from Rust, even when the Rust ecosystem supports these targets. Something is off with its design if new work needs to be done for every platform that's already available behind an interface that's as consistent as what rustc gives.

    What is supported needs to be inferred from this file, as far as I can tell: https://github.com/bazelbuild/rules_rust/blob/main/rust/plat...

  • Cpp-like build tools for Rust?
    4 projects | /r/rustjerk | 9 Sep 2022
    You might be overjoyed to learn that you can use a build tool that forces you to manually write out the dependencies between each file.
  • How to enable suggestions/autocomplete in VS Code?
    1 project | /r/bazel | 1 Jun 2022
    I am using rules_rust and have the VS Code Bazel plugin installed, but I am still not getting autocomplete.
  • Blog Post: Fast Rust Builds
    5 projects | /r/rust | 5 Sep 2021
    Other than that, the performance of both for builds should be determined exactly by the organization of code into separate crates and the rustc invocations. Bazel generally encourages smaller crates, but that's very subtle. There is at least 1 case I can think of where rustc is overfit to cargo, in a way that is not easily replicable by bazel, which is the metadata/rlib pipelining https://github.com/bazelbuild/rules_rust/issues/228
  • Modern C++ Won't Save Us (2019)
    7 projects | news.ycombinator.com | 25 Apr 2021
    Rust integrates pretty seamlessly into Bazel projects via rules_rust (https://github.com/bazelbuild/rules_rust). The existing rules even allow for c calling rust and rust calling c. Example: https://github.com/bazelbuild/rules_rust/blob/main/examples/...
  • Why Zig When There Is Already C++ and Rust?
    10 projects | news.ycombinator.com | 15 Jan 2021
    With any compiled language you can use the compiler and vendor your dependencies instead of using the language's conventional package manager. For example, nothing prevents skipping Cargo and building Rust directly with rustc the way Bazel does.

    https://github.com/bazelbuild/rules_rust

cargo-chef

Posts with mentions or reviews of cargo-chef. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-02.
  • Transitioning to Rust as a company
    8 projects | /r/rust | 2 Jun 2023
    CI time. Do you want to micromanage your own docker images for all your CI? Great! If not, yes you do. In fact, you want to manage a docker image to build a docker image to use for CI. Use cargo-chef to prepare a build image with your dependencies pre-built if you want to do fine-grained build/test pipelines. Oh also, there's no jUnit test report generation, that was killed off today. (YES, SORRY, I'm still salty.)
  • Rust and Next.js everywhere?
    2 projects | /r/rust | 26 Apr 2023
    Have you looked at cargo-chef? It supposedly speeds up compilation times if you're using Docker.
  • Exploring the problem of faster Cargo Docker builds
    4 projects | /r/rust | 30 Mar 2023
    A tool already exists for this called Cargo-chef, and it works extremely well.
  • Deploying Rust APIs | What Is Your Favorite Method?
    3 projects | /r/rust | 28 Mar 2023
    At work I've use Dockerfile and cargo-chef to improve build times. You can also look into buildkit cache mounts, but this approach is rarely super effective on hosted CI because they start from scratch on most runs. In the context of Rust specifically you may also see the target directory reflect unbounded data growth if it's reused over and over across revisions. because cargo by default won't expire older intermediate artifacts. Cargo-sweep can help with that but I wouldn't pursue this in a CI effort. This will affect both "native" builds and buildkit cache mounts if you're persisting the target directory.
  • How to write a GitHub Action in Rust
    4 projects | dev.to | 6 Feb 2023
    We create an empty Rust binary with cargo new, this is a simple way to get Docker layer caching to work. For a more robust solution, you may want to check out cargo-chef.
  • Crafting container images without Dockerfiles
    20 projects | news.ycombinator.com | 6 Feb 2023
    If this ends up being a cleaner/easier way to having to workaround super expensive rebuilds for Rust given cache + deps compared to this https://github.com/LukeMathWalker/cargo-chef , reading this thread will have been a huge win for me (and hopefully others).

    Whether introducing Bazel is easier/worth it, subjective I guess.

  • Is it possible to get fast Rust compiles in a Docker container?
    11 projects | /r/rust | 28 Dec 2022
    I did a talk (slides here) about this a few years ago, it took a bit of work to get the build caching working with cargo. As others have pointed out, there is now cargo chef to solve this problem so you probably don't have to deal with the issues I saw, but I thought it still might be helpful context.
  • Faster CI builds for Rust with pre-baked builder images and sccache
    1 project | /r/rust | 16 Dec 2022
    I'm curious if you've tried out cargo-chef, I've had some decent improvements with it but I wonder how it stacks up to the sccache approach (don't have the time to try it out myself right now).
  • 2 years of fiddling with Rust – critical thoughts
    5 projects | news.ycombinator.com | 6 Nov 2022
    for CI have you tried to use buildkit persistent runners with caching + https://github.com/LukeMathWalker/cargo-chef ?
  • How to speed up the Rust compiler in July 2022
    7 projects | /r/rust | 19 Jul 2022
    If you're deploying Rust with Docker I can tell you that cargo-chef is invaluable. With zero work it caches the dependency fetch and compilation steps. Most of the time the ens Docker deploy is closer to an incremental compile than full.

What are some alternatives?

When comparing rules_rust and cargo-chef you can also consider the following projects:

zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

sccache - Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.

cargo-sweep - A cargo subcommand for cleaning up unused build files generated by Cargo

mold - Mold: A Modern Linker 🦠

www.ziglang.org

wg-allocators - Home of the Allocators working group: Paving a path for a standard set of allocator traits to be used in collections!

bloom - The simplest way to de-Google your life and business: Inbox, Calendar, Files, Contacts & much more

bazel-coverage-report-renderer - Haskell rules for Bazel.

monadium - A platform with the purpose to teach Rust web development to people with no prior experience of programming

llvm-project - The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.

football-simulator - Football simulation engine (like Football Manager) written in pure Rust