Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thbar/rust-playground


https://github.com/thbar/rust-playground

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

In this repository, I'm following [Learn Rust by example](https://rustbyexample.com) and implementing what I learn as tests (koans-style).

Feel free to fork for your own learning.

[![Build Status](https://travis-ci.org/thbar/rust-playground.svg?branch=master)](https://travis-ci.org/thbar/rust-playground)

### Steps to use

* Install Rust ([rustup](https://www.rustup.rs) is the recommended way)
* Open [Rust by example](https://rustbyexample.com)
* Run with `cargo test`
* Run on file change with `find src | entr -c cargo test`

## Running a specific binary (since we'll have more than one ultimately)

See `Cargo.toml`.

```
find src | entr -c cargo run --bin gcd 15
```