Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 1.21 KB

README.md

File metadata and controls

36 lines (21 loc) · 1.21 KB

mrs-matrix

A multiplatform Rust clone of cmatrix.

Unlike the original cmatrix, supports both Windows and most flavors of Linux. May also support macOS, though this is untested.

Installation

You first need the Rust environment: https://rustup.rs

Install from the repository

(recommended if you don't intend to modify the program)

cargo install mrs-matrix --locked

Install from source

  1. Clone this repository locally with git clone https://github.com/generic-user1/mrs-matrix.git
  2. Enter the directory of the repository with cd mrs-matrix
  3. Install the project with cargo install --path .

Usage

Run mrs-matrix

To get a list of possible options, run mrs-matrix --help

Dependencies

As a user, you likely won't have to worry about these as cargo will take care of downloading and building them for you.

  • crossterm for multiplatform terminal control.
  • coolor for color management.
  • rand for random number generation.
  • clap for command-line argument parsing.