I'm wondering if it's possible to tell the compiler to use the nightly toolchain on a specific package in my workspace using configuration files. Currently I'm using a rust-toolchain.toml file in my installer
package with these contents:
[toolchain]
channel = "nightly"
Very simple right now but I'll add more specifics later. Now when I call cargo check
from my installer
package the compiler has no issues, but when I call it from the workspace root it gives an error related to my code not being allowed on the stable release channel, so basically it didn't recognize the toolchain file.