We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For environments like NixOS, auto-downloading binaries like wasm-bindgen isn't ideal.
wasm-bindgen
Similar issue for the rustup usage for auto-downloading of toolchain targets. rustup may not even be present in certain environments.
rustup
Add a way to disable these downloads.
Add a CLI feature to disable downloads, similar to the "no_downloads" feature of cargo-leptos. Just look for the tools in $PATH instead.
Instead of using rustup to check what targets are currently installed, you could use rustc --print sysroot instead.
rustc --print sysroot
I have a (messy) example here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request
For environments like NixOS, auto-downloading binaries like
wasm-bindgen
isn't ideal.Similar issue for the
rustup
usage for auto-downloading of toolchain targets.rustup
may not even be present in certain environments.Add a way to disable these downloads.
Implement Suggestion
Add a CLI feature to disable downloads, similar to the "no_downloads" feature of cargo-leptos. Just look for the tools in $PATH instead.
Instead of using
rustup
to check what targets are currently installed, you could userustc --print sysroot
instead.I have a (messy) example here.
The text was updated successfully, but these errors were encountered: