Skip to content

Commit 8f10bbf

Browse files
committed
fix ci issues
1 parent d9f5f04 commit 8f10bbf

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

src/async_impl/client.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2200,7 +2200,7 @@ impl ClientBuilder {
22002200
///
22012201
/// The default is false.
22022202
#[cfg(feature = "http3-no-provider")]
2203-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
2203+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
22042204
pub fn tls_early_data(mut self, enabled: bool) -> ClientBuilder {
22052205
self.config.tls_enable_early_data = enabled;
22062206
self
@@ -2212,7 +2212,7 @@ impl ClientBuilder {
22122212
///
22132213
/// [`TransportConfig`]: https://docs.rs/quinn/latest/quinn/struct.TransportConfig.html
22142214
#[cfg(feature = "http3-no-provider")]
2215-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
2215+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
22162216
pub fn http3_max_idle_timeout(mut self, value: Duration) -> ClientBuilder {
22172217
self.config.quic_max_idle_timeout = Some(value);
22182218
self
@@ -2229,7 +2229,7 @@ impl ClientBuilder {
22292229
///
22302230
/// Panics if the value is over 2^62.
22312231
#[cfg(feature = "http3-no-provider")]
2232-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
2232+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
22332233
pub fn http3_stream_receive_window(mut self, value: u64) -> ClientBuilder {
22342234
self.config.quic_stream_receive_window = Some(value.try_into().unwrap());
22352235
self
@@ -2246,7 +2246,7 @@ impl ClientBuilder {
22462246
///
22472247
/// Panics if the value is over 2^62.
22482248
#[cfg(feature = "http3-no-provider")]
2249-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
2249+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
22502250
pub fn http3_conn_receive_window(mut self, value: u64) -> ClientBuilder {
22512251
self.config.quic_receive_window = Some(value.try_into().unwrap());
22522252
self
@@ -2258,7 +2258,7 @@ impl ClientBuilder {
22582258
///
22592259
/// [`TransportConfig`]: https://docs.rs/quinn/latest/quinn/struct.TransportConfig.html
22602260
#[cfg(feature = "http3-no-provider")]
2261-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
2261+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
22622262
pub fn http3_send_window(mut self, value: u64) -> ClientBuilder {
22632263
self.config.quic_send_window = Some(value);
22642264
self
@@ -2272,7 +2272,7 @@ impl ClientBuilder {
22722272
/// [BBR]: https://datatracker.ietf.org/doc/html/draft-ietf-ccwg-bbr
22732273
/// [CUBIC]: https://datatracker.ietf.org/doc/html/rfc8312
22742274
#[cfg(feature = "http3-no-provider")]
2275-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
2275+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
22762276
pub fn http3_congestion_bbr(mut self) -> ClientBuilder {
22772277
self.config.quic_congestion_bbr = true;
22782278
self
@@ -2288,7 +2288,7 @@ impl ClientBuilder {
22882288
///
22892289
/// [`Builder`]: https://docs.rs/h3/latest/h3/client/struct.Builder.html#method.max_field_section_size
22902290
#[cfg(feature = "http3-no-provider")]
2291-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
2291+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
22922292
pub fn http3_max_field_section_size(mut self, value: u64) -> ClientBuilder {
22932293
self.config.h3_max_field_section_size = Some(value.try_into().unwrap());
22942294
self
@@ -2306,7 +2306,7 @@ impl ClientBuilder {
23062306
///
23072307
/// [`Builder`]: https://docs.rs/h3/latest/h3/client/struct.Builder.html#method.send_grease
23082308
#[cfg(feature = "http3-no-provider")]
2309-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
2309+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
23102310
pub fn http3_send_grease(mut self, enabled: bool) -> ClientBuilder {
23112311
self.config.h3_send_grease = Some(enabled);
23122312
self

src/blocking/client.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ impl ClientBuilder {
542542
///
543543
/// [`TransportConfig`]: https://docs.rs/quinn/latest/quinn/struct.TransportConfig.html
544544
#[cfg(feature = "http3-no-provider")]
545-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
545+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
546546
pub fn http3_max_idle_timeout(self, value: Duration) -> ClientBuilder {
547547
self.with_inner(|inner| inner.http3_max_idle_timeout(value))
548548
}
@@ -558,7 +558,7 @@ impl ClientBuilder {
558558
///
559559
/// Panics if the value is over 2^62.
560560
#[cfg(feature = "http3-no-provider")]
561-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
561+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
562562
pub fn http3_stream_receive_window(self, value: u64) -> ClientBuilder {
563563
self.with_inner(|inner| inner.http3_stream_receive_window(value))
564564
}
@@ -574,7 +574,7 @@ impl ClientBuilder {
574574
///
575575
/// Panics if the value is over 2^62.
576576
#[cfg(feature = "http3-no-provider")]
577-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
577+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
578578
pub fn http3_conn_receive_window(self, value: u64) -> ClientBuilder {
579579
self.with_inner(|inner| inner.http3_conn_receive_window(value))
580580
}
@@ -585,7 +585,7 @@ impl ClientBuilder {
585585
///
586586
/// [`TransportConfig`]: https://docs.rs/quinn/latest/quinn/struct.TransportConfig.html
587587
#[cfg(feature = "http3-no-provider")]
588-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
588+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
589589
pub fn http3_send_window(self, value: u64) -> ClientBuilder {
590590
self.with_inner(|inner| inner.http3_send_window(value))
591591
}
@@ -598,7 +598,7 @@ impl ClientBuilder {
598598
/// [BBR]: https://datatracker.ietf.org/doc/html/draft-ietf-ccwg-bbr
599599
/// [CUBIC]: https://datatracker.ietf.org/doc/html/rfc8312
600600
#[cfg(feature = "http3-no-provider")]
601-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
601+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
602602
pub fn http3_congestion_bbr(self) -> ClientBuilder {
603603
self.with_inner(|inner| inner.http3_congestion_bbr())
604604
}
@@ -613,7 +613,7 @@ impl ClientBuilder {
613613
///
614614
/// [`Builder`]: https://docs.rs/h3/latest/h3/client/struct.Builder.html#method.max_field_section_size
615615
#[cfg(feature = "http3-no-provider")]
616-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
616+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
617617
pub fn http3_max_field_section_size(self, value: u64) -> ClientBuilder {
618618
self.with_inner(|inner| inner.http3_max_field_section_size(value))
619619
}
@@ -630,7 +630,7 @@ impl ClientBuilder {
630630
///
631631
/// [`Builder`]: https://docs.rs/h3/latest/h3/client/struct.Builder.html#method.send_grease
632632
#[cfg(feature = "http3-no-provider")]
633-
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider",))))]
633+
#[cfg_attr(docsrs, doc(cfg(all(reqwest_unstable, feature = "http3-no-provider"))))]
634634
pub fn http3_send_grease(self, enabled: bool) -> ClientBuilder {
635635
self.with_inner(|inner| inner.http3_send_grease(enabled))
636636
}

0 commit comments

Comments
 (0)