My solutions for Exercism Rust Track. Feel free to open issues for questions, comments, or suggestions.
RUST_BACKTRACE=1 cargo test --release --manifest-path </path/to/Cargo.toml> \
--all-features -- --include-ignored --nocapture --exact <test_name>
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
.
- Phil's Blog
- Tom McGurl/YouTube
- Rust Programming Exercises/YouTube
- Tensor Programming/Youtube
- CS Honors @ Illinois/YouTube
- Exercism supported Crates
Released under Apache License v2.0.