Crates.io | zvezda |
lib.rs | zvezda |
version | 0.1.4 |
source | src |
created_at | 2023-02-23 17:37:28.721088 |
updated_at | 2023-06-06 09:01:57.189529 |
description | Simple, fast, lightweight and non-intrusive web library |
homepage | https://gitlab.com/inzig0/zvezda |
repository | https://gitlab.com/inzig0/zvezda |
max_upload_size | |
id | 792943 |
size | 9,635 |
One of my big gripes with a lot of these existing web server implementations for rust is that they are all big! You need to look through documentation for 15 minutes and 100 lines of boilerplate to even know what your doing! Thats why I began work on Zvezda.
https://gitlab.com/inzig0/zvezda.git
cd
into the project folderBarebones web server: cargo run --example hello
Basic ping-pong web server: cargo run --example echo
Simple boilerplate web server: cargo run --example html
JSON usage example: cargo run --example json
Add this line to your Cargo.toml
:
...
[dependencies]
zvezda = "0.1.1"
// OR if you want the git version,
zvezda = { git = "https://gitlab.com/inzig0/zvezda.git" }
...