From 33ffa12286ab2c08bd9942fc30ceec101b728786 Mon Sep 17 00:00:00 2001 From: "Maciek \"mab122\" Bator" Date: Tue, 14 Jul 2026 16:18:55 +0200 Subject: [PATCH] Exclude radicle-lfs-transfer submodule from the outer cargo workspace Cargo's workspace auto-detection was pulling the submodule into the parent workspace since it's nested under the repo root, breaking `cargo install --path radicle-lfs-transfer` (the exact command in the README/LFS-IPFS.md setup instructions) with "current package believes it's in a workspace when it's not". Discovered while installing the built binaries onto a real machine. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 09af4540..2546261c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [workspace] members = ["crates/*"] +exclude = ["radicle-lfs-transfer"] resolver = "2" [workspace.package]