update to version 0.20.0

epel9
Fabio Valentini 4 years ago
parent fc7af4648f
commit ec04d24b8d
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

1
.gitignore vendored

@ -6,3 +6,4 @@
/trust-dns-resolver-0.19.4.crate
/trust-dns-resolver-0.19.5.crate
/trust-dns-resolver-0.19.6.crate
/trust-dns-resolver-0.20.0.crate

@ -7,8 +7,8 @@
%global crate trust-dns-resolver
Name: rust-%{crate}
Version: 0.19.6
Release: 3%{?dist}
Version: 0.20.0
Release: 1%{?dist}
Summary: Trust-DNS is a safe and secure DNS library
# Upstream license specification: MIT/Apache-2.0
@ -60,6 +60,18 @@ which use "default" feature of "%{crate}" crate.
%files -n %{name}+default-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+backtrace-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+backtrace-devel %{_description}
This package contains library source intended for building other packages
which use "backtrace" feature of "%{crate}" crate.
%files -n %{name}+backtrace-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+dns-over-native-tls-devel
Summary: %{summary}
BuildArch: noarch
@ -216,40 +228,40 @@ which use "tokio" feature of "%{crate}" crate.
%files -n %{name}+tokio-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+tokio-openssl-devel
%package -n %{name}+tokio-native-tls-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tokio-openssl-devel %{_description}
%description -n %{name}+tokio-native-tls-devel %{_description}
This package contains library source intended for building other packages
which use "tokio-openssl" feature of "%{crate}" crate.
which use "tokio-native-tls" feature of "%{crate}" crate.
%files -n %{name}+tokio-openssl-devel
%files -n %{name}+tokio-native-tls-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+tokio-runtime-devel
%package -n %{name}+tokio-openssl-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tokio-runtime-devel %{_description}
%description -n %{name}+tokio-openssl-devel %{_description}
This package contains library source intended for building other packages
which use "tokio-runtime" feature of "%{crate}" crate.
which use "tokio-openssl" feature of "%{crate}" crate.
%files -n %{name}+tokio-runtime-devel
%files -n %{name}+tokio-openssl-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+tokio-tls-devel
%package -n %{name}+tokio-runtime-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+tokio-tls-devel %{_description}
%description -n %{name}+tokio-runtime-devel %{_description}
This package contains library source intended for building other packages
which use "tokio-tls" feature of "%{crate}" crate.
which use "tokio-runtime" feature of "%{crate}" crate.
%files -n %{name}+tokio-tls-devel
%files -n %{name}+tokio-runtime-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+trust-dns-native-tls-devel
@ -295,6 +307,9 @@ which use "trust-dns-openssl" feature of "%{crate}" crate.
%endif
%changelog
* Mon Mar 08 2021 Fabio Valentini <decathorpe@gmail.com> - 0.20.0-1
- Update to version 0.20.0.
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

@ -1 +1 @@
SHA512 (trust-dns-resolver-0.19.6.crate) = fcc6771d4ae07a8584b4e229c260dddaf291fc7559cfc6b77d71054c88d90474a803f1af28651c2a9817ddc7c98b405047a92f50634c6b4e3391c3d48382eebe
SHA512 (trust-dns-resolver-0.20.0.crate) = 698ad1665b0fd9ae690a4d9dd684e12dd77a60df67dbd7c846071ea54820d3875de01938c3a6b1611e86dd19d65fb72b505086f8c06211c80e4d165c5371eb79

@ -1,16 +1,16 @@
--- trust-dns-resolver-0.19.6/Cargo.toml 2020-11-13T19:18:12+00:00
+++ trust-dns-resolver-0.19.6/Cargo.toml 2020-11-22T13:11:36.968150+00:00
@@ -127,12 +127,9 @@
--- trust-dns-resolver-0.20.0/Cargo.toml 2020-12-29T22:07:59+00:00
+++ trust-dns-resolver-0.20.0/Cargo.toml 2021-03-08T13:35:32.032670+00:00
@@ -128,12 +128,9 @@
dnssec-ring = ["dnssec", "trust-dns-proto/dnssec-ring"]
mdns = ["trust-dns-proto/mdns"]
serde-config = ["serde", "trust-dns-proto/serde-config"]
-system-config = ["ipconfig", "resolv-conf"]
+system-config = ["resolv-conf"]
testing = []
tokio-runtime = ["tokio/rt-core", "trust-dns-proto/tokio-runtime"]
tokio-runtime = ["tokio/rt", "trust-dns-proto/tokio-runtime"]
-[target."cfg(windows)".dependencies.ipconfig]
-version = "0.2.0"
-version = "0.2.2"
-optional = true
[badges.codecov]
branch = "master"
branch = "main"
repository = "bluejekyll/trust-dns"

Loading…
Cancel
Save