An open API service indexing awesome lists of open source software.

https://github.com/borisskert/rust-katas

This repo contains my solutions for some Rust katas submitted in Codewars.
https://github.com/borisskert/rust-katas

Last synced: 7 months ago
JSON representation

This repo contains my solutions for some Rust katas submitted in Codewars.

Awesome Lists containing this project

README

          

# Rust katas
![](https://www.codewars.com/users/besterboris/badges/micro)

This repo contains my solutions for some [Rust](https://www.rust-lang.org/) katas submitted in [Codewars](https://www.codewars.com).

## Prerequisites

You need to install the [Rust development environment](https://www.rust-lang.org/learn/get-started) Version 1.60
for your OS to build this project and run its tests.

## Linting

```shell
cargo clippy
```

## Build

```shell
cargo build
```

## Run tests

```shell
cargo test
```