www.rust-lang.org
September 30, 2025 ยท View on GitHub
the home of the rust website
Note
There are currently no reviewers for the translations available. If you have a suggestion to improve the translations, you may still open an issue for future reference. However, it likely won't be acted upon for the time being.
Development
Building the web locally
Execute cargo run. The web will be compiled into the build directory, from which you can serve it using a web server of your choice. For example, with Python it could be:
$ cargo run
$ python3 -m http.server -d build
You can use cargo watch -x run to automatically rebuild the web once you make changes to it.
Where to edit
- If you would like to edit styles, you should edit
src/styles/app.scss. - If you would like to edit page content, you should edit the
hbsfiles intemplates.
Contributing
Please read our CONTRIBUTING.md before submitting a PR!
Deployment
www.rust-lang.org is currently hosted on GitHub Pages. The main branch is
automatically deployed to www.rust-lang.org after
each push.