From 372fe8cec37620e945f6237d8f90f808726aaefa Mon Sep 17 00:00:00 2001 From: Dylan Frankland Date: Thu, 30 Jul 2026 16:49:35 +0000 Subject: [PATCH] Add bundle, bazel-bep, and constants to workspace members MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These three crates were already implicit workspace members (cargo auto-includes path dependencies inside the workspace directory), so this is a no-op for cargo itself. But external tools that read the root member list literally — notably the Nix-based resolver used to build trunk2's Rust workspace, which consumes these packages as a git dependency — cannot find non-listed packages. Listing them explicitly fixes that resolution. Co-Authored-By: Claude Fable 5 --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index ac81c903..3a352e13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,6 +15,9 @@ members = [ "test_report", "third-party", "display", + "bundle", + "bazel-bep", + "constants", ] exclude = ["rspec-trunk-flaky-tests/ext/context_ruby"] resolver = "2"