Open
Description
Some of my custom targets require me to enable build-std, which currently I can enable through .cargo/config.toml
[unstable]
build-std = ["core"]
but this means it is enabled for every target. However I don't necessarily want it for build in targets, it would be nice if in my .cargo/config.toml I could specify something like
[target.custom-target.unstable]
build-std = ["core"]
If this is already possible but with a different syntax consider this issue closed