Stage 0

Source: https://github.com/prestontw/bazel-rust-guided-experiment/tree/main/src/stage-0

This is our starting version. This tries to mimic a monorepo where we have a backend (where our Rust code goes) as well as a frontend. We also have a utility deployment folder for general tools, which may include additional Rust code. Since this might contain more Rust code, I'm setting this up with a workspace Cargo.toml file.

For building the backend, this stage uses cargo.

How did we get here?

This is copied from Axum's readme example. For actually vendoring the dependencies, this uses cargo-vendor.

There are two things to note on this vendoring:

  • we used versioned directories via the --versioned-dirs flag to cargo vendor, and
  • it's actually nested inside of our vendored directory, specifically for Rust. This anticipates adding other vendored dependencies for our front-end code (and better supports bazel's structure later).

With the above two notes, the command that we run is

cargo vendor --versioned-dirs 3rd-party/crates

🤦‍♂️ I actually messed both of these things up when I originally went through this process. That resulted in large git diffs when I vendored using bazel (since it uses versions in its directory names) and lots of floundering when trying to get bazel to vendor dependencies to an appropriate location. This is an example of something that I can smooth over in this blog. I can make this mistake in my original process, then time travel as if I did it correctly originally in this post! Note that this is a pain point, though. If you run into issues like this in the future, the examples are your best friends.

We also change our cargo configuration file to read from our local directory, following the steps that the above command lists:

[source.crates-io]
replace-with = "vendored-sources"

[source.vendored-sources]
directory = "3rd-party/crates"

We can verify this is successful with cargo build --offline.

What's next?

Well, this currently isn't building with bazel. Let's try to do that, while maintaining cargo build-ability so local development is nice and what developers are used to. Onwards to the next stage!