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
- Host: GitHub
- URL: https://github.com/leondejong/rust-playground
- Owner: leondejong
- License: apache-2.0
- Created: 2020-10-10T19:05:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-07T17:41:51.000Z (over 1 year ago)
- Last Synced: 2025-07-26T11:18:51.389Z (10 months ago)
- Topics: api, axum, clap, ggez, graphics, hyper, macroquad, minifb, nannou, pixels, postgresql, raylib, rust, softbuffer, sqlx, tide, warp, wasm, winit
- Language: Rust
- Homepage: https://leondejong.com
- Size: 1.01 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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`