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.
This commit is contained in:
parent
e060442017
commit
33ffa12286
|
|
@ -1,5 +1,6 @@
|
|||
[workspace]
|
||||
members = ["crates/*"]
|
||||
exclude = ["radicle-lfs-transfer"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
|
|
|
|||
Loading…
Reference in New Issue