From a1fd0349393f28fcb87076ad9f89a83271fe5685 Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Thu, 14 May 2026 13:58:49 +1000 Subject: [PATCH] fix: add default-run to sprout-relay so `cargo run -p sprout-relay` works Since #569 added a second binary to the sprout-relay crate, `cargo run -p sprout-relay` fails because Cargo can't pick which binary to run. Setting `default-run = "sprout-relay"` fixes the `relay`, `relay-web`, and `relay-release` justfile recipes. Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Matt Toohey --- crates/sprout-relay/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/sprout-relay/Cargo.toml b/crates/sprout-relay/Cargo.toml index c5d84d800..997e5de47 100644 --- a/crates/sprout-relay/Cargo.toml +++ b/crates/sprout-relay/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "sprout-relay" +default-run = "sprout-relay" version.workspace = true edition.workspace = true rust-version.workspace = true