Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thbar/rust-playground
https://github.com/thbar/rust-playground
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/thbar/rust-playground
- Owner: thbar
- Created: 2016-04-29T22:01:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-07-31T17:29:22.000Z (over 3 years ago)
- Last Synced: 2024-10-14T02:50:05.600Z (2 months ago)
- Language: Rust
- Size: 34.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```