Welcome to the rust-toolkit extension! This README provides information about the extension's features, requirements, settings, and more.
Features
The rust-toolkit extension offers a range of features to enhance your Rust development experience.
Key Features:
- Syntax Highlighting: Enhanced syntax highlighting for Rust code.
- Code Snippets: Pre-defined code snippets to speed up your development.
- Debugging Support: Integrated debugging tools to help troubleshoot Rust applications.
- Code Formatting: Automatic code formatting based on Rust standards.
Tip: Many popular extensions utilize animations to showcase their features effectively. Consider including short, focused animations that are easy to follow.
Requirements
To use rust-toolkit, ensure you have the following:
- Visual Studio Code: Requires VS Code version 1.50 or higher.
- Rust Toolchain: Install the Rust toolchain from rust-lang.org.
To install Rust, use rustup, which provides a simple way to install and manage Rust versions.
Extension Settings
The rust-toolkit extension adds several VS Code settings that you can configure:
rustToolkit.enable: Enable or disable the extension.
rustToolkit.autoFormat: Set to true to enable automatic formatting on save.
rustToolkit.lintLevel: Configure the lint level (e.g., warn, error).
Example configuration in settings.json:
{
"rustToolkit.enable": true,
"rustToolkit.autoFormat": true,
"rustToolkit.lintLevel": "warn"
}