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

https://github.com/ghaztools/rust-caching-svc

I was just using this to learn rust :)
https://github.com/ghaztools/rust-caching-svc

cargo make pre-commit redis rust

Last synced: about 1 month ago
JSON representation

I was just using this to learn rust :)

Awesome Lists containing this project

README

          

# Description

A simple rust service implementation for caching items using Redis

## Before You Run

You must have rust installed

## How To Run

To run your service you can do the following

```bash
make full-build
make run
```

or

```bash
cargo clean && cargo build && cargo run
```

## Additional Information

### Organizing your imports

To organize your Cargo.toml files, you can use cargo-sort which needs to be installed.
cargo-sort takes a look at tomlfmt.toml to figure out how to sort your toml file

```bash
cargo install cargo-sort
cargo sort
```