chore: update Wagi revision

This commit updates the Wagi revision to include a fix in the logic for
parsing the CGI response headers.
This means we can use the net/http/cgi package to write Go Wagi
components directly, as opposed to composing responses manually.

Signed-off-by: Radu Matei <radu.matei@fermyon.com>
This commit is contained in:
Radu Matei 2022-03-09 00:48:46 +02:00
parent 3d5c140c24
commit 52e8ee1822
No known key found for this signature in database
GPG Key ID: 53A4E7168B7782C2
2 changed files with 4 additions and 3 deletions

5
Cargo.lock generated
View File

@ -3711,8 +3711,8 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wagi"
version = "0.6.2"
source = "git+https://github.com/deislabs/wagi?rev=984c3922626b770ba434430a19685985989c45ff#984c3922626b770ba434430a19685985989c45ff"
version = "0.7.0"
source = "git+https://github.com/deislabs/wagi?rev=a5b3e7b9e94f86bcb753d7a009d51fd016a41f4e#a5b3e7b9e94f86bcb753d7a009d51fd016a41f4e"
dependencies = [
"anyhow",
"async-stream",
@ -3727,6 +3727,7 @@ dependencies = [
"hyper",
"indexmap",
"oci-distribution",
"reqwest",
"serde",
"sha2 0.9.9",
"tempfile",

View File

@ -29,7 +29,7 @@ tracing = { version = "0.1", features = [ "log" ] }
tracing-futures = "0.2"
tracing-subscriber = { version = "0.3.7", features = [ "env-filter" ] }
url = "2.2"
wagi = { git = "https://github.com/deislabs/wagi", rev = "984c3922626b770ba434430a19685985989c45ff" }
wagi = { git = "https://github.com/deislabs/wagi", rev = "a5b3e7b9e94f86bcb753d7a009d51fd016a41f4e" }
wasi-common = "0.34"
wasmtime = "0.34"
wasmtime-wasi = "0.34"