/rust-tests

Tests with Rust language

Primary LanguageRustMIT LicenseMIT

Rust Tests

Tests with Rust language

Prerequisites

Optional for language support:

  • Install rust-analyzer
    • For example in VSCode, install the rust-analyzer extension or install with rustup rustup component add rust-analyzer

Alternatively, develop in browser

Open in Gitpod

Usage

Using Cargo

  # Go into relevant project directory
  cd <project>
  # Run project
  cargo run

Using Makefile

  • Can be used if make is installed on Linux, MacOS, or Windows with git bash and make installed
  # Install rust-analyzer
  make install

  # See available programs to run
  make

  # Choose program to run
  make <run...>