mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-13 06:20:02 -04:00
cargo update
This commit is contained in:
parent
16268905fc
commit
ef6ae49085
6 changed files with 159 additions and 227 deletions
|
@ -583,11 +583,10 @@ impl EpoxyClient {
|
|||
|
||||
let response_headers_raw = response.headers().clone();
|
||||
|
||||
let mut response_builder = ResponseInit::new();
|
||||
response_builder
|
||||
.headers(&response_headers)
|
||||
.status(response.status().as_u16())
|
||||
.status_text(response.status().canonical_reason().unwrap_or_default());
|
||||
let response_builder = ResponseInit::new();
|
||||
response_builder.set_headers(&response_headers);
|
||||
response_builder.set_status(response.status().as_u16());
|
||||
response_builder.set_status_text(response.status().canonical_reason().unwrap_or_default());
|
||||
|
||||
cfg_if! {
|
||||
if #[cfg(feature = "full")] {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue