|
1 | 1 | [package] |
2 | 2 | name = "volga" |
3 | | -version = "0.7.2" |
| 3 | +version = "0.7.3" |
4 | 4 | readme = "../README.md" |
5 | 5 | description = "Easy & Fast Web Framework for Rust" |
6 | 6 | edition.workspace = true |
@@ -32,36 +32,36 @@ serde_urlencoded = "0.7.1" |
32 | 32 | smallvec = "1.15.1" |
33 | 33 |
|
34 | 34 | # optional |
35 | | -async-compression = { version = "0.4.34", features = ["tokio"], optional = true } |
| 35 | +async-compression = { version = "0.4.36", features = ["tokio"], optional = true } |
36 | 36 | base64 = { version = "0.22.1", optional = true } |
37 | 37 | chrono = { version = "0.4.42", optional = true } |
38 | 38 | cookie = { version = "0.18.1", features = ["percent-encode"], optional = true } |
39 | 39 | jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"], optional = true } |
40 | 40 | handlebars = { version = "6.3.2", optional = true } |
41 | 41 | httpdate = { version = "1.0.3", optional = true } |
42 | 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 } |
| 43 | +hyper-util = { version = "0.1.19", features = ["server", "server-auto", "server-graceful", "service", "tokio"], optional = true } |
44 | 44 | multer = { version = "3.1.0", optional = true } |
45 | 45 | sha1 = { version = "0.10.6", optional = true } |
46 | 46 | tokio-rustls = { version = "0.26.4", default-features = false, features = ["tls12", "ring"], optional = true } |
47 | 47 | 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 } |
49 | 49 |
|
50 | 50 | # 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 } |
54 | 54 |
|
55 | 55 | [dev-dependencies] |
56 | 56 | base64 = { version = "0.22.1" } |
57 | 57 | 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"] } |
60 | 60 | serde = { version = "1.0.228", features = ["derive"] } |
61 | 61 | 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"] } |
65 | 65 |
|
66 | 66 | [features] |
67 | 67 | # Default HTTP/1 only server |
|
0 commit comments