rusty-dev-containers icon indicating copy to clipboard operation
rusty-dev-containers copied to clipboard

A collection of dev container features for working with rust

Results 8 rusty-dev-containers issues
Sort by recently updated
recently updated
newest added

An option for using a pre-compiled binstall binary would speed up container time `curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash` I have not opened a pull request because...

I am trying to use these features for a dev container. I have the following configuration: ``` { "name": "My Container", "image": "rust:bullseye", "features": { "ghcr.io/lee-orr/rusty-dev-containers/cargo-binstall:0": {}, "ghcr.io/lee-orr/rusty-dev-containers/cargo-watch:0": {} }...

Some devcontainers need to have rust set to a specific version for MSRV. That can make the `binstall` feature fail because it always fetch the latest version and sometimes it...

Script was checking for binstall, but doing regular install anyway, even after trying to reinstall binstall. Just moved the conditional and umask around to use binstall if it's present. If...

When installing features `dioxus:0.1.8` and `wasm-server-runner:0.1.8`, but it would apply similarly to all the features using the same binstall template, I'm getting ``` ./install.sh: line 23: !cargo: command not found...

Moving umask fixes an issue where cargo install would otherwise create files in `/usr/local/cargo` that are owned by root. My dev container default has a user of vscode and that...

Put a space between the ! operator and "cargo" to fix failed installation/testing of features. Closes #35 and supersedes #34.