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.
- Host: GitHub
- URL: https://github.com/borisskert/rust-katas
- Owner: borisskert
- Created: 2022-07-25T17:33:53.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-14T08:20:55.000Z (7 months ago)
- Last Synced: 2025-03-14T09:22:51.418Z (7 months ago)
- Language: Rust
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust katas
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
```