diff --git a/Cargo.lock b/Cargo.lock index 922196d07..faf2e4d59 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,21 @@ 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", + "tokio", + "tokio-util", +] + +[[package]] +name = "cegla-scgi" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712fb2865241c0afad2ace738608fce3fb360480cc369f6f63e2fcbb6e22dcd1" +dependencies = [ + "cegla 0.2.3", "hashlink", "http 1.4.0", "http-body 1.0.1", @@ -1526,9 +1559,9 @@ dependencies = [ "async-trait", "base64", "bytes", - "cegla", + "cegla 0.1.2", "cegla-cgi", - "cegla-scgi", + "cegla-scgi 0.2.3", "chrono", "cidr", "fancy-regex", @@ -4395,7 +4428,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c49da70a28bdf9cb11dfe21d9b94fecf925a0354ed981740a73f78dfb25bc96d" dependencies = [ "cegla-cgi", - "cegla-scgi", + "cegla-scgi 0.1.2", "tokio", ] diff --git a/ferron-modules-builtin/Cargo.toml b/ferron-modules-builtin/Cargo.toml index f7b114d23..d420f6ad8 100644 --- a/ferron-modules-builtin/Cargo.toml +++ b/ferron-modules-builtin/Cargo.toml @@ -80,7 +80,7 @@ smallvec = { version = "1.15.0", features = [ # Gateway interfaces cegla = { version = "0.1.2", 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"] } +cegla-scgi = { version = "0.2.0", optional = true, default-features = false, features = ["client"] } tokio-cegla = { version = "0.1.2", optional = true, default-features = false } [target.'cfg(unix)'.dev-dependencies]