| Crates.io | coman |
| lib.rs | coman |
| version | 0.3.1 |
| created_at | 2019-11-23 01:52:16.728229+00 |
| updated_at | 2021-06-26 23:43:31.393466+00 |
| description | Easily run and test your programming contest solutions |
| homepage | https://github.com/j-tai/coman |
| repository | https://github.com/j-tai/coman |
| max_upload_size | |
| id | 183651 |
| size | 80,192 |
Contest manager — easily run and test your programming contest solutions.
src directory, or a subdirectory of src.coman. This will automatically find which source file you are working on and will compile and run it.test directory.coman test. This will run each test and display the results.Simple, right?
To install this program, install Rust if you haven't already.
You can install the latest version by typing:
$ cargo install coman
This will install coman from crates.io.
Now, check out the getting started tutorial.
Clone the repository and use cargo to install it:
$ git clone https://github.com/j-tai/coman.git
$ cd coman
$ cargo install --path .
Or, if you want to just build the program, you can use
$ cargo build --release
for an optimized build (or omit --release for a debug build). Then, the binary will be in target/release/coman (or target/debug/coman).