rust-toolchain.toml 391 B

123456789101112131415
  1. # SPDX-FileCopyrightText: 2024 Christina Sørensen
  2. # SPDX-License-Identifier: EUPL-1.2
  3. [toolchain]
  4. # NOTE: don't forget to also update Cargo.toml and .github/workflows/unit-tests.yml
  5. # At the time of writing, 1.90 is the latest version supported by OpenBSD
  6. channel = "1.90"
  7. components = [
  8. "rustfmt",
  9. "rustc",
  10. "rust-src",
  11. "rust-analyzer",
  12. "cargo",
  13. "clippy",
  14. ]
  15. profile = "minimal"