Enable features for HTTP/3 (QUIC) support

epel9
Fabio Valentini 1 year ago
parent 8d46c6b7eb
commit 732450b210
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

@ -1,5 +1,5 @@
--- reqwest-0.11.22/Cargo.toml 1970-01-01T00:00:01+00:00 --- reqwest-0.11.22/Cargo.toml 1970-01-01T00:00:01+00:00
+++ reqwest-0.11.22/Cargo.toml 2023-10-28T00:08:11.596301+00:00 +++ reqwest-0.11.22/Cargo.toml 2023-11-06T11:15:47.342691+00:00
@@ -221,7 +221,6 @@ @@ -221,7 +221,6 @@
stream = [ stream = [
"tokio/fs", "tokio/fs",

@ -182,6 +182,18 @@ use the "deflate" feature of the "%{crate}" crate.
%files -n %{name}+deflate-devel %files -n %{name}+deflate-devel
%ghost %{crate_instdir}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+futures-channel-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+futures-channel-devel %{_description}
This package contains library source intended for building other packages which
use the "futures-channel" feature of the "%{crate}" crate.
%files -n %{name}+futures-channel-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+gzip-devel %package -n %{name}+gzip-devel
Summary: %{summary} Summary: %{summary}
BuildArch: noarch BuildArch: noarch
@ -194,6 +206,42 @@ use the "gzip" feature of the "%{crate}" crate.
%files -n %{name}+gzip-devel %files -n %{name}+gzip-devel
%ghost %{crate_instdir}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+h3-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+h3-devel %{_description}
This package contains library source intended for building other packages which
use the "h3" feature of the "%{crate}" crate.
%files -n %{name}+h3-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+h3-quinn-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+h3-quinn-devel %{_description}
This package contains library source intended for building other packages which
use the "h3-quinn" feature of the "%{crate}" crate.
%files -n %{name}+h3-quinn-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+http3-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+http3-devel %{_description}
This package contains library source intended for building other packages which
use the "http3" feature of the "%{crate}" crate.
%files -n %{name}+http3-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+hyper-rustls-devel %package -n %{name}+hyper-rustls-devel
Summary: %{summary} Summary: %{summary}
BuildArch: noarch BuildArch: noarch
@ -290,6 +338,18 @@ use the "native-tls-crate" feature of the "%{crate}" crate.
%files -n %{name}+native-tls-crate-devel %files -n %{name}+native-tls-crate-devel
%ghost %{crate_instdir}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+quinn-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+quinn-devel %{_description}
This package contains library source intended for building other packages which
use the "quinn" feature of the "%{crate}" crate.
%files -n %{name}+quinn-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+rustls-devel %package -n %{name}+rustls-devel
Summary: %{summary} Summary: %{summary}
BuildArch: noarch BuildArch: noarch

@ -1,11 +1,6 @@
[features] [features]
hide = [ hide = [
"futures-channel",
"h3",
"h3-quinn",
"http3",
"native-tls-vendored", "native-tls-vendored",
"quinn",
] ]
[tests] [tests]

Loading…
Cancel
Save