You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cargo traverses parent directories until it fins a .cargo/config and then applies that at any level.
Because of this, there is no way to write tooling for the current PC that doesn't require --target=... which is somewhat frustrating when that's what you're trying to do...
Ran into this trying to write a script to generate the macros for #277. A build script would avoid the issue but this would be a constant file (not requiring compile time generation) and would add a lot of noise if any other features were to be added (as I understand it, build scripts are single file).
The text was updated successfully, but these errors were encountered:
cargo traverses parent directories until it fins a .cargo/config and then applies that at any level.
Because of this, there is no way to write tooling for the current PC that doesn't require
--target=...
which is somewhat frustrating when that's what you're trying to do...Ran into this trying to write a script to generate the macros for #277. A build script would avoid the issue but this would be a constant file (not requiring compile time generation) and would add a lot of noise if any other features were to be added (as I understand it, build scripts are single file).
The text was updated successfully, but these errors were encountered: