11[package ]
22name = " volga"
3- version = " 0.7.1"
4- edition = " 2024"
5- rust-version = " 1.90.0"
6- authors = [" Roman Emreis <roman.emreis@outlook.com>" ]
7- license = " MIT"
8- repository = " https://github.com/RomanEmreis/volga"
3+ version = " 0.7.2"
4+ readme = " ../README.md"
95description = " Easy & Fast Web Framework for Rust"
10- documentation = " https://docs.rs/volga"
11- readme = " README.md"
12- homepage = " https://romanemreis.github.io/volga-docs"
13- categories = [
14- " web-programming::http-server" ,
15- " web-programming::websocket" ,
16- " network-programming" ,
17- " asynchronous" ,
18- ]
6+ edition.workspace = true
7+ rust-version.workspace = true
8+ authors.workspace = true
9+ license.workspace = true
10+ repository.workspace = true
11+ documentation.workspace = true
12+ homepage.workspace = true
13+ categories.workspace = true
1914keywords = [" async" , " server" , " http" , " web" , " framework" ]
2015
2116[dependencies ]
2217# required
23- bytes = " 1.10.1 "
18+ bytes = " 1.11.0 "
2419futures-util = { version = " 0.3.31" , default-features = false , features = [" alloc" ] }
2520http-body-util = " 0.1.3"
2621itoa = " 1.0.15"
27- indexmap = " 2.12.0 "
22+ indexmap = " 2.12.1 "
2823memchr = " 2.7.6"
2924mime = " 0.3.17"
3025mime_guess = " 2.0.5"
@@ -37,25 +32,25 @@ serde_urlencoded = "0.7.1"
3732smallvec = " 1.15.1"
3833
3934# optional
40- async-compression = { version = " 0.4.32 " , features = [" tokio" ], optional = true }
35+ async-compression = { version = " 0.4.34 " , features = [" tokio" ], optional = true }
4136base64 = { version = " 0.22.1" , optional = true }
4237chrono = { version = " 0.4.42" , optional = true }
4338cookie = { version = " 0.18.1" , features = [" percent-encode" ], optional = true }
4439jsonwebtoken = { version = " 10.2.0" , features = [" rust_crypto" ], optional = true }
4540handlebars = { version = " 6.3.2" , optional = true }
4641httpdate = { version = " 1.0.3" , optional = true }
47- hyper = { version = " 1.7.0 " , features = [" server" ], optional = true }
48- hyper-util = { version = " 0.1.17 " , features = [" server" , " server-auto" , " server-graceful" , " service" , " tokio" ], optional = true }
42+ 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 }
4944multer = { version = " 3.1.0" , optional = true }
5045sha1 = { version = " 0.10.6" , optional = true }
5146tokio-rustls = { version = " 0.26.4" , default-features = false , features = [" tls12" , " ring" ], optional = true }
5247tokio-tungstenite = { version = " 0.28.0" , optional = true }
5348tracing = { version = " 0.1.41" , default-features = false , optional = true }
5449
5550# volga
56- volga-dev-cert = { path = " ../volga-dev-cert" , version = " 0.7.1 " , optional = true }
57- volga-di = { path = " ../volga-di" , version = " 0.7.1 " , optional = true }
58- volga-macros = { path = " ../volga-macros" , version = " 0.7.1 " , optional = true }
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 }
5954
6055[dev-dependencies ]
6156base64 = { version = " 0.22.1" }
0 commit comments