Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asarkar/exercism-rust
https://exercism.org/tracks/rust
https://github.com/asarkar/exercism-rust
algorithms data-structures exercism exercism-rust rust rust-lang
Last synced: about 2 months ago
JSON representation
https://exercism.org/tracks/rust
- Host: GitHub
- URL: https://github.com/asarkar/exercism-rust
- Owner: asarkar
- License: apache-2.0
- Created: 2022-05-23T06:25:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-25T00:04:15.000Z (over 1 year ago)
- Last Synced: 2024-05-01T12:20:58.081Z (8 months ago)
- Topics: algorithms, data-structures, exercism, exercism-rust, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 386 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# exercism-rust
My solutions for [Exercism Rust Track](https://exercism.org/tracks/rust).
Feel free to open issues for questions, comments, or suggestions.[![](https://github.com/asarkar/exercism-rust/workflows/CI/badge.svg)](https://github.com/asarkar/exercism-rust/actions)
## Running tests
```
RUST_BACKTRACE=1 cargo test --release --manifest-path \
--all-features -- --include-ignored --nocapture --exact
```To run a test `test_bits` in file `src/bitset.rs`, under module `tests`, use the path
`bitset::tests::test_bits`. To run all tests in that module, use the path `bitset::tests`.To run a test `test_bits` in file `src/lib.rs`, under module `tests`, use the path
`tests::test_bits`.## References
* [Phil's Blog](https://www.philipdaniels.com/tags/rust/)
* [Tom McGurl/YouTube](https://www.youtube.com/c/TomMcGurl/videos)
* [Rust Programming Exercises/YouTube](https://www.youtube.com/playlist?list=PLb1VOxJqFzDdS-xV9OkKKPfXvtQ8y1Wzk)
* [Tensor Programming/Youtube](https://www.youtube.com/c/TensorProgramming/search)
* [CS Honors @ Illinois/YouTube](https://www.youtube.com/channel/UCRA18QWPzB7FYVyg0WFKC6g/search?query=rust)
* [Exercism supported Crates](https://github.com/exercism/rust-test-runner/blob/main/local-registry/supported_crates)## License
Released under [Apache License v2.0](LICENSE).