Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "Rust",
"image": "mcr.microsoft.com/devcontainers/rust:1",
"customizations": {
Copy link
Copy Markdown
Author

@spenserblack spenserblack May 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would probably be a good idea to pin to the MSRV. A rust-toolchain.toml file could do the same thing BTW if you'd prefer that instead. Thoughts?

"codespaces": {
"openFiles": ["CONTRIBUTING.md", ".github/pull_request_template.md"]
},
"vscode": {
"extensions": [
"rust-lang.rust-analyzer"
]
}
Comment on lines +17 to +21
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To better align the development environment with the project's strict CI requirements (clippy and multi-feature support), consider adding the even-better-toml extension for Cargo.toml validation and configuring rust-analyzer to use clippy and enable all features by default. This helps contributors identify issues locally before submitting a pull request.

    "vscode": {
      "extensions": [
        "rust-lang.rust-analyzer",
        "tamasfe.even-better-toml"
      ],
      "settings": {
        "rust-analyzer.check.command": "clippy",
        "rust-analyzer.cargo.allFeatures": true
      }
    }

},
"remoteUser": "vscode"
}
Loading