Skip to content

Commit e119b5a

Browse files
authored
updated dependencies (#129)
1 parent ea06266 commit e119b5a

File tree

11 files changed

+26
-27
lines changed

11 files changed

+26
-27
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ unsafe_code = "forbid"
2323
rust_2018_idioms = { level = "warn", priority = -1 }
2424
missing_debug_implementations = "warn"
2525
missing_docs = "warn"
26-
unreachable_pub = "warn"
26+
unreachable_pub = "warn"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Volga
22
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.
33

4-
[![latest](https://img.shields.io/badge/latest-0.7.2-blue)](https://crates.io/crates/volga)
4+
[![latest](https://img.shields.io/badge/latest-0.7.3-blue)](https://crates.io/crates/volga)
55
[![latest](https://img.shields.io/badge/rustc-1.90+-964B00)](https://crates.io/crates/volga)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
77
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)
@@ -23,7 +23,7 @@ Fast, Easy, and very flexible Web Framework for Rust based on [Tokio](https://to
2323
### Dependencies
2424
```toml
2525
[dependencies]
26-
volga = "0.7.2"
26+
volga = "0.7.3"
2727
tokio = { version = "1", features = ["full"] }
2828
```
2929
### Simple request handler

volga-dev-cert/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volga-dev-cert"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
readme = "README.md"
55
description = "A Rust library for generating self-signed TLS certificates for local development."
66
edition.workspace = true
@@ -14,7 +14,7 @@ categories.workspace = true
1414
keywords = ["volga", "server", "https", "tls"]
1515

1616
[dependencies]
17-
rcgen = "0.14.5"
17+
rcgen = "0.14.6"
1818

1919
[lints]
2020
workspace = true

volga-dev-cert/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Volga Development Certificates
22
A Rust library for generating self-signed TLS certificates for local development.
33

4-
[![latest](https://img.shields.io/badge/latest-0.7.2-blue)](https://crates.io/crates/volga)
4+
[![latest](https://img.shields.io/badge/latest-0.7.3-blue)](https://crates.io/crates/volga)
55
[![latest](https://img.shields.io/badge/rustc-1.90+-964B00)](https://crates.io/crates/volga)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
77
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)

volga-di/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volga-di"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
readme = "README.md"
55
description = "Dependency Injection tools for Volga Web Framework"
66
edition.workspace = true

volga-di/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Volga DI
22
A standalone, flexible, and easy-to-configure DI container.
33

4-
[![latest](https://img.shields.io/badge/latest-0.7.2-blue)](https://crates.io/crates/volga)
4+
[![latest](https://img.shields.io/badge/latest-0.7.3-blue)](https://crates.io/crates/volga)
55
[![latest](https://img.shields.io/badge/rustc-1.90+-964B00)](https://crates.io/crates/volga)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
77
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)
@@ -14,12 +14,12 @@ A standalone, flexible, and easy-to-configure DI container.
1414
#### Standalone
1515
```toml
1616
[dependencies]
17-
volga-di = "0.7.2"
17+
volga-di = "0.7.3"
1818
```
1919
#### Part of Volga Web Framework
2020
```toml
2121
[dependencies]
22-
volga = { version = "0.7.2", features = ["di"] }
22+
volga = { version = "0.7.3", features = ["di"] }
2323
```
2424

2525
### Example

volga-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volga-macros"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
readme = "README.md"
55
description = "Macros for Volga Web Framework"
66
edition.workspace = true

volga-macros/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Volga Macros
22
Macros library for Volga Web Framework
33

4-
[![latest](https://img.shields.io/badge/latest-0.7.2-blue)](https://crates.io/crates/volga)
4+
[![latest](https://img.shields.io/badge/latest-0.7.3-blue)](https://crates.io/crates/volga)
55
[![latest](https://img.shields.io/badge/rustc-1.90+-964B00)](https://crates.io/crates/volga)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-violet.svg)](https://github.com/RomanEmreis/volga/blob/main/LICENSE)
77
[![Build](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml/badge.svg)](https://github.com/RomanEmreis/volga/actions/workflows/rust.yml)
@@ -12,6 +12,6 @@ Macros library for Volga Web Framework
1212
## Dependencies
1313
```toml
1414
[dependencies]
15-
volga = { version = "0.7.2", features = ["macros"] }
15+
volga = { version = "0.7.3", features = ["macros"] }
1616
```
1717

volga/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "volga"
3-
version = "0.7.2"
3+
version = "0.7.3"
44
readme = "../README.md"
55
description = "Easy & Fast Web Framework for Rust"
66
edition.workspace = true
@@ -32,36 +32,36 @@ serde_urlencoded = "0.7.1"
3232
smallvec = "1.15.1"
3333

3434
# optional
35-
async-compression = { version = "0.4.34", features = ["tokio"], optional = true }
35+
async-compression = { version = "0.4.36", features = ["tokio"], optional = true }
3636
base64 = { version = "0.22.1", optional = true }
3737
chrono = { version = "0.4.42", optional = true }
3838
cookie = { version = "0.18.1", features = ["percent-encode"], optional = true }
3939
jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"], optional = true }
4040
handlebars = { version = "6.3.2", optional = true }
4141
httpdate = { version = "1.0.3", optional = true }
4242
hyper = { version = "1.8.1", features = ["server"], optional = true }
43-
hyper-util = { version = "0.1.18", features = ["server", "server-auto", "server-graceful", "service", "tokio"], optional = true }
43+
hyper-util = { version = "0.1.19", features = ["server", "server-auto", "server-graceful", "service", "tokio"], optional = true }
4444
multer = { version = "3.1.0", optional = true }
4545
sha1 = { version = "0.10.6", optional = true }
4646
tokio-rustls = { version = "0.26.4", default-features = false, features = ["tls12", "ring"], optional = true }
4747
tokio-tungstenite = { version = "0.28.0", optional = true }
48-
tracing = { version = "0.1.41", default-features = false, optional = true }
48+
tracing = { version = "0.1.44", default-features = false, optional = true }
4949

5050
# volga
51-
volga-dev-cert = { path = "../volga-dev-cert", version = "0.7.2", optional = true }
52-
volga-di = { path = "../volga-di", version = "0.7.2", optional = true }
53-
volga-macros = { path = "../volga-macros", version = "0.7.2", optional = true }
51+
volga-dev-cert = { path = "../volga-dev-cert", version = "0.7.3", optional = true }
52+
volga-di = { path = "../volga-di", version = "0.7.3", optional = true }
53+
volga-macros = { path = "../volga-macros", version = "0.7.3", optional = true }
5454

5555
[dev-dependencies]
5656
base64 = { version = "0.22.1" }
5757
jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"] }
58-
hyper = { version = "1.7.0", features = ["client"] }
59-
reqwest = { version = "0.12.24", features = ["blocking", "multipart", "stream", "json", "http2", "brotli", "deflate", "gzip", "zstd", "native-tls"] }
58+
hyper = { version = "1.8.1", features = ["client"] }
59+
reqwest = { version = "0.12.26", features = ["blocking", "multipart", "stream", "json", "http2", "brotli", "deflate", "gzip", "zstd", "native-tls"] }
6060
serde = { version = "1.0.228", features = ["derive"] }
6161
tokio-stream = "0.1.17"
62-
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
63-
uuid = { version = "1.18.1", features = ["v4"] }
64-
criterion = { version = "0.7.0", features = ["async_tokio"] }
62+
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
63+
uuid = { version = "1.19.0", features = ["v4"] }
64+
criterion = { version = "0.8.1", features = ["async_tokio"] }
6565

6666
[features]
6767
# Default HTTP/1 only server

volga/src/error/problem.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ impl Problem {
120120

121121
#[cfg(test)]
122122
mod tests {
123-
use crate::problem;
124123
use http_body_util::BodyExt;
125124

126125
#[tokio::test]

0 commit comments

Comments
 (0)