diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..8ea31fc --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "Rust", + "image": "mcr.microsoft.com/devcontainers/rust:2-1-trixie", + "mounts": [ + { + "source": "devcontainer-cargo-cache-${devcontainerId}", + "target": "/usr/local/cargo", + "type": "volume" + }, + "source=${localEnv:HOME}/.cargo/config.toml,target=/usr/local/cargo/config.toml,type=bind,consistency=cached,readonly" + ], + "customizations" : { + "jetbrains" : { + "backend" : "RustRover" + } + } +}