From 27df47697483619a32715b6dff1c7f963cc48407 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 13:55:24 +0000 Subject: [PATCH] fix(deps): update rust crate cegla to 0.2.0 --- Cargo.lock | 25 ++++++++++++++++++++++--- ferron-modules-builtin/Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 922196d07..b43613a23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -879,13 +879,32 @@ dependencies = [ "tokio-util", ] +[[package]] +name = "cegla" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10c8cc8e64f46d9c4a9ce216b9a8fdd90af900ea7567b3fd5b19fc8f47856cbd" +dependencies = [ + "bytes", + "futures-util", + "hashlink", + "http 1.4.0", + "http-body 1.0.1", + "http-body-util", + "httparse", + "memchr", + "smallvec", + "tokio", + "tokio-util", +] + [[package]] name = "cegla-cgi" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4379fdfb08f3fecd557169d18a8cf4b5950c62850e07b803f63d06a00a08cc45" dependencies = [ - "cegla", + "cegla 0.1.2", "http 1.4.0", "http-body 1.0.1", "tokio", @@ -898,7 +917,7 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08e9ecc40f12e626331b0270c92ea83de78d63f4259613659ef637229d0d7d79" dependencies = [ - "cegla", + "cegla 0.1.2", "hashlink", "http 1.4.0", "http-body 1.0.1", @@ -1526,7 +1545,7 @@ dependencies = [ "async-trait", "base64", "bytes", - "cegla", + "cegla 0.2.3", "cegla-cgi", "cegla-scgi", "chrono", diff --git a/ferron-modules-builtin/Cargo.toml b/ferron-modules-builtin/Cargo.toml index f7b114d23..e5d071be0 100644 --- a/ferron-modules-builtin/Cargo.toml +++ b/ferron-modules-builtin/Cargo.toml @@ -78,7 +78,7 @@ smallvec = { version = "1.15.0", features = [ ] } # Gateway interfaces -cegla = { version = "0.1.2", optional = true, default-features = false, features = ["client"] } +cegla = { version = "0.2.0", optional = true, default-features = false, features = ["client"] } cegla-cgi = { version = "0.1.2", optional = true, default-features = false, features = ["client"] } cegla-scgi = { version = "0.1.2", optional = true, default-features = false, features = ["client"] } tokio-cegla = { version = "0.1.2", optional = true, default-features = false }