asarkar / exercism-rust

https://exercism.org/tracks/rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

exercism-rust

My solutions for Exercism Rust Track. Feel free to open issues for questions, comments, or suggestions.

Running tests

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.

References

License

Released under Apache License v2.0.

About

https://exercism.org/tracks/rust

License:Apache License 2.0


Languages

Language:Rust 100.0%