Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/).

# Unreleased
# 0.8.9

## Added
* New `attach()` method for parameterized generic middleware registration (#175)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exclude = ["fuzz"]
resolver = "2"

[workspace.package]
version = "0.8.8"
version = "0.8.9"
license = "MIT"
edition = "2024"
rust-version = "1.90.0"
Expand All @@ -21,11 +21,11 @@ categories = [
]

[workspace.dependencies]
volga-dev-cert = { path = "volga-dev-cert", version = "0.8.8" }
volga-di = { path = "volga-di", version = "0.8.8" }
volga-macros = { path = "volga-macros", version = "0.8.8" }
volga-open-api = { path = "volga-open-api", version = "0.8.8" }
volga-rate-limiter = { path = "volga-rate-limiter", version = "0.8.8" }
volga-dev-cert = { path = "volga-dev-cert", version = "0.8.9" }
volga-di = { path = "volga-di", version = "0.8.9" }
volga-macros = { path = "volga-macros", version = "0.8.9" }
volga-open-api = { path = "volga-open-api", version = "0.8.9" }
volga-rate-limiter = { path = "volga-rate-limiter", version = "0.8.9" }

[workspace.lints.rust]
unsafe_code = "forbid"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Fast, simple, and high-performance web framework for Rust, built on top of
Volga is designed to make building HTTP services straightforward and explicit,
while keeping performance predictable and overhead minimal.

[![latest](https://img.shields.io/badge/latest-0.8.8-blue)](https://crates.io/crates/volga)
[![latest](https://img.shields.io/badge/latest-0.8.9-blue)](https://crates.io/crates/volga)
[![latest](https://img.shields.io/badge/rustc-1.90+-964B00)](https://releases.rs/docs/1.90.0/)
[![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 Down Expand Up @@ -46,7 +46,7 @@ Volga is a good fit if you:
### Dependencies
```toml
[dependencies]
volga = "0.8.8"
volga = "0.8.9"
tokio = { version = "1", features = ["full"] }
```
### Simple request handler
Expand Down
6 changes: 3 additions & 3 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ edition = "2024"
cargo-fuzz = true

[dependencies]
arbitrary = { version = "1", features = ["derive"] }
libfuzzer-sys = "0.4"
hyper = { version = "1.8.1", default-features = false }
arbitrary = { version = "1.4.2", features = ["derive"] }
libfuzzer-sys = "0.4.12"
hyper = { version = "1.9.0", default-features = false }
volga = { path = "../volga", features = ["full", "__fuzzing"] }

[[bin]]
Expand Down
10 changes: 5 additions & 5 deletions volga/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,22 @@ memchr = "2.8.0"
mime = "0.3.17"
mime_guess = "2.0.5"
pin-project-lite = "0.2.17"
tokio = { version = "1.50.0", features = ["fs", "io-util", "macros", "net", "rt", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.51.0", features = ["fs", "io-util", "macros", "net", "rt", "rt-multi-thread", "signal", "sync", "time"] }
tokio-util = "0.7.18"
serde = "1.0.228"
serde_json = "1.0.149"
serde_urlencoded = "0.7.1"
smallvec = "1.15.1"

# optional
arc-swap = { version = "1.9.0", optional = true }
arc-swap = { version = "1.9.1", optional = true }
toml = { version = "0.8.23", optional = true }
async-compression = { version = "0.4.41", features = ["tokio"], optional = true }
base64 = { version = "0.22.1", optional = true }
cookie = { version = "0.18.1", features = ["percent-encode"], optional = true }
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"], optional = true }
httpdate = { version = "1.0.3", optional = true }
hyper = { version = "1.8.1", features = ["server"], optional = true }
hyper = { version = "1.9.0", features = ["server"], optional = true }
hyper-util = { version = "0.1.20", features = ["server", "server-auto", "server-graceful", "service", "tokio"], optional = true }
multer = { version = "3.1.0", optional = true }
sha1 = { version = "0.11.0", optional = true }
Expand All @@ -61,13 +61,13 @@ volga-rate-limiter = { workspace = true, optional = true }
[dev-dependencies]
base64 = { version = "0.22.1" }
jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }
hyper = { version = "1.8.1", features = ["client"] }
hyper = { version = "1.9.0", features = ["client"] }
reqwest = { version = "0.13.2", features = ["rustls-no-provider"] }
serde = { version = "1.0.228", features = ["derive"] }
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
uuid = { version = "1.23.0", features = ["v4"] }
criterion = { version = "0.8.2", features = ["async_tokio"] }
tempfile = "3.26.0"
tempfile = "3.27.0"

[features]
# Default HTTP/1 only server
Expand Down
Loading