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

https://github.com/leondejong/rust-playground

Rust Examples
https://github.com/leondejong/rust-playground

api axum clap ggez graphics hyper macroquad minifb nannou pixels postgresql raylib rust softbuffer sqlx tide warp wasm winit

Last synced: 4 months ago
JSON representation

Rust Examples

Awesome Lists containing this project

README

          

# Rust Playground

## General

- `general/collections` -> Collection examples

## CLI

- `cli/generation-clap` -> CLI random sample generator example with `clap` and `rand`

## Web

- `web/api-tide` -> JSON REST API example with `tide`
- `web/api-warp` -> JSON REST API example with `warp`
- `web/api-axum` -> JSON REST API example with `axum`
- `web/api-hyper-sqlx` -> JSON REST API example with `hyper` and `sqlx` (legacy version)

## Graphics

- `graphics/ggez-platform` -> Basic platform example with `ggez`
- `graphics/raylib-platform` -> Basic platform example with `raylib`
- `graphics/nannou-platform` -> Basic platform example with `nannou`
- `graphics/macroquad-platform` -> Basic platform example with `macroquad`
- `graphics/minifb-platform` -> Basic platform example with `minifb`
- `graphics/wasm-platform` -> Basic platform example with `wasm`
- `graphics/winit-softbuffer` -> Pixel drawing example with `winit` and `softbuffer`
- `graphics/winit-pixels` -> Pixel drawing example with `winit` and `pixels`
- `graphics/minifb-example` -> Pixel drawing example with `minifb`