Hello, we run into
panicked at 'not implemented: auto_decompress_response_set has not yet been implemented in Viceroy', /home/starptech/.cargo/registry/src/github.zerozr99.workers.dev-1ecc6299db9ec823/viceroy-lib-0.2.8/src/wiggle_abi/req_impl.rs:476:9
// Build client request
let req = hyper::Request::builder()
.method(Method::POST)
.uri("http://example.com")
.header("authorization", "bearer 123")
.header("content-type", "application/json")
.body(Body::from(serde_json::to_string(client_json_body).unwrap()))
.unwrap();
// Fire request
let response = viceroy::handle_request(req, url).await.unwrap();
when upgrading from "fastly: 0.8.0" to "fastly: 0.8.1"
It will internally update
[[package]]
name = "fastly-shared"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a50fae8c678779e8dcd18e36f9982d09c706764e8976c542fd53193a62d83727"
dependencies = [
"bitflags",
"http",
"thiserror",
]
[[package]]
name = "fastly-sys"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afcf0f870a0c9ac8166b0797a9391e5df81b7b5cc13b53b4d305e0b1368801d4"
dependencies = [
"bitflags",
"fastly-shared 0.8.1",
]
It was introduced in fee8165
Related: fastly/cli#496
Hello, we run into
when upgrading from "fastly: 0.8.0" to "fastly: 0.8.1"
It will internally update
It was introduced in fee8165
Related: fastly/cli#496