rustere

Rust Template repository

GitHub release Build status licence

DescriptionInstallUsageUse this templateContribute

Description

rustere stands for Rust template repository.

It's just a template repository for Rust, with the following features :

Install

Install rustere by running :

cargo install rustere

Usage

rustere does not contain any useful code because it's a template repository.
But you can run the following command to check if the package was correctly installed :

console rustere

Use this template

To use this template, click the button "Use this template" :

Use template

It will prompt you to create a new Github repository.

Then replace the content in your freshly created repository, with your own package name, own code, and update the links to point to your own repository.


Here is an exhaustive list of things to do :

Contribute

To contribute, install the package locally, create your own branch, add your code (and tests, and documentation), and open a PR !

Code formatting

Ensure the code you added is properly formatted with :

console cargo fmt

Tests

When you contribute, you need to make sure all the unit-tests pass. You should also add tests if necessary !

You can run the tests with :

console cargo test

Documentation

The documentation should be kept up-to-date. You can visualize the documentation locally by running :

console cargo doc --open