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
fenixToolchainCrossWasm = with fenix.packages.${system}; combine ([
channel.cargo
channel.rustc
targets.wasm32-unknown-unknown.stable.rust-std # The `stable` here is a problem, because at this point I already don't want to care how the original channel was named/sourced
]);
The text was updated successfully, but these errors were encountered:
Another reason this is desirable is because, when using toolchainOf or similar, targets.foo.bar.rust-std might be a different rust version than the cargo/rustc in use, which causes rustc to fail to find std/alloc/core.
It seems like right now the only way to add targets is with
fenix.packages.${system}targets.wasm32-unknown-unknown.stable.rust-std
.This however is a bit of a pain when working with any sort of abstractions on top of fenix.
Basically I see these levels:
If I already selected a channel and have it in
channel
I wish I could:But this doesn't seem to work. Instead I need to:
The text was updated successfully, but these errors were encountered: