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

https://github.com/martincastroalvarez/rust-ecopark

Running SQL queries with Rust.
https://github.com/martincastroalvarez/rust-ecopark

rust

Last synced: about 1 year ago
JSON representation

Running SQL queries with Rust.

Awesome Lists containing this project

README

          

# Ecopark SQL

Running SQL queries with Rust.

![wallpaper.jpg](wallpaper.jpg)

## Instructions

* Start a new MySQL database.

```bash
docker run --name ecopark -e MYSQL_ROOT_PASSWORD=viu -d mysql:latest
```

* Run the Rust program.

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

## Development

* Automatically format the code.

```bash
cargo fmt
```