Downgrade MSRV to 1.56

pull/266/head
Teo Klestrup Röijezon 2 years ago
parent 5695f5d891
commit d21c7b53ca
  1. 2
      Cargo.toml
  2. 6
      src/handshake/client.rs

@ -11,7 +11,7 @@ documentation = "https://docs.rs/tungstenite/0.17.1"
repository = "https://github.com/snapview/tungstenite-rs"
version = "0.17.1"
edition = "2018"
rust-version = "1.58"
rust-version = "1.56"
include = ["benches/**/*", "src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
[package.metadata.docs.rs]

@ -131,7 +131,7 @@ fn generate_request(mut request: Request) -> Result<(Vec<u8>, String)> {
let value = headers.remove(header).ok_or_else(|| {
Error::Protocol(ProtocolError::InvalidHeader(HeaderName::from_static(header)))
})?;
write!(req, "{header}: {value}\r\n", value = value.to_str()?).unwrap();
write!(req, "{header}: {value}\r\n", header = header, value = value.to_str()?).unwrap();
}
// Now we must ensure that the headers that we've written once are not anymore present in the map.
@ -296,7 +296,9 @@ mod tests {
Upgrade: websocket\r\n\
Sec-WebSocket-Version: 13\r\n\
Sec-WebSocket-Key: {key}\r\n\
\r\n"
\r\n",
host = host,
key = key
)
.into_bytes()
}

Loading…
Cancel
Save