https://github.com/tbsklg/rust-katas
https://github.com/tbsklg/rust-katas
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tbsklg/rust-katas
- Owner: tbsklg
- Created: 2024-05-13T09:28:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-09T11:09:37.000Z (10 months ago)
- Last Synced: 2025-03-11T01:48:31.725Z (3 months ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust-katas
[](https://www.codewars.com/users/tbsklg)This repository contains my solutions to Katas hosted on [codewars.com](https://www.codewars.com/).
Each Kata is a separate Rust project that you can build and run.# How to run
For each Kata, you can run the following commands within the Kata's directory.## Run
```bash
cargo run
```## Testing
```bash
cargo test
```## Linting
```bash
cargo clippy
```## Formatting
```bash
cargo fmt
```