fix warning and bump version

This commit is contained in:
Toshit Chawda 2024-10-16 21:34:21 -07:00
parent bfee4dc078
commit 1f1786de1f
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
4 changed files with 20 additions and 18 deletions

View file

@ -331,6 +331,7 @@ pub struct EpoxyClient {
certs_tampered: bool,
pub redirect_limit: usize,
#[cfg(feature = "full")]
header_limit: usize,
#[cfg(feature = "full")]
ws_title_case_headers: bool,
@ -433,10 +434,11 @@ impl EpoxyClient {
stream_provider,
client,
redirect_limit: options.redirect_limit,
header_limit: options.header_limit,
user_agent: options.user_agent,
buffer_size: options.buffer_size,
#[cfg(feature = "full")]
header_limit: options.header_limit,
#[cfg(feature = "full")]
ws_title_case_headers: options.ws_title_case_headers,
#[cfg(feature = "full")]