rsrun 0.1.4

An easy way to test rust projects
rsrun-0.1.4 is not a library.

RSRUN

About

Rsrun is a simple cli tool that watches your current directory for any changes or file saves and runs specific commands found in its configuration.

Primarily tested with Rust, but it should work with most common programming languages.

Installation

cargo install rsrun

Getting Started

First, create the configuration file in the root of your cargo project.

touch rsrun.toml

Configuration Example

commands = [["cargo", "clean"], ["cargo", "run"]]

ignore = ["/target/"]

Configuration Details

  • commands
    A list of commands which will run in sequence.

  • ignore
    A list of paths or directories that should be ignored by the file watcher.

After creating the configuration file run:

rsrun