mirror of
https://github.com/fosskers/cargo-aur.git
synced 2026-03-08 23:03:13 -05:00
support rust workspace #7
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Ludea on GitHub (Feb 6, 2023).
workspace seems to be not supported.
I get workspace with 2 subprojets, but when running
cargo aur, getError: missing field package at line 1 column 1@fosskers commented on GitHub (Feb 7, 2023):
Would it work if you ran
cargo aurwithin the subcrate?@Ludea commented on GitHub (Feb 7, 2023):
doesn't work because binaries are into
/workspaceroot/target/release/XXXand not/workspaceroot/workspacemember/target/release/XXX@ozwaldorf commented on GitHub (Jun 15, 2023):
Related:
With a structure like so:
It fails when the root cargo toml uses workspace.package keys for anything in the package section, for example:
@fosskers commented on GitHub (Jun 21, 2023):
Thanks for the extra info.
@fosskers commented on GitHub (Oct 2, 2023):
One possible workaround for the detection of
target/would be to symlink totarget/from<subcrate>/target/.