Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Emreis authored and Roman Emreis committed Feb 20, 2025
1 parent a4f32fc commit ab53df0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Volga
Fast, Easy, and very flexible Web Framework for Rust based on [Tokio](https://tokio.rs/) runtime and [hyper](https://hyper.rs/) for fun and painless microservices crafting.

[![latest](https://img.shields.io/badge/latest-0.5.2-blue)](https://crates.io/crates/volga)
[![latest](https://img.shields.io/badge/latest-0.5.3-blue)](https://crates.io/crates/volga)
[![latest](https://img.shields.io/badge/rustc-1.80+-964B00)](https://crates.io/crates/volga)
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)
Expand All @@ -14,13 +14,14 @@ Fast, Easy, and very flexible Web Framework for Rust based on [Tokio](https://to
* Robust routing
* Custom middlewares
* Dependency Injection
* WebSockets and WebTransport
* Full [Tokio](https://tokio.rs/) compatibility
* Runs on stable Rust 1.80+
## Getting Started
### Dependencies
```toml
[dependencies]
volga = "0.5.2"
volga = "0.5.3"
tokio = { version = "1", features = ["full"] }
```
### Simple request handler
Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
//! * Supports HTTP/1 and HTTP/2
//! * Robust routing
//! * Custom middlewares
//! * Dependency Injection
//! * WebSockets and WebTransport
//! * Full [Tokio](https://tokio.rs/) compatibility
//! * Runs on stable Rust 1.80+
//!
//! ## Example
//! ```toml
//! [dependencies]
//! volga = "0.5.2"
//! volga = "0.5.3"
//! tokio = { version = "1", features = ["full"] }
//! ```
//! ```no_run
Expand Down

0 comments on commit ab53df0

Please sign in to comment.