# ==========================================================
# dev-dependencies
# ==========================================================
-# BuildRequires: rust-hex
+%if 0%{?run_tests}
+BuildRequires: rust-hex
+%endif
%description
install -d -m 0755 %{buildroot}%{_rust_dylibdir}
install -m 0644 lib%{real_crate_name}.so %{buildroot}/%{_rust_dylibdir}/lib%{real_crate_name}.so
+%check
+%if 0%{?run_tests}
+%{rustc_std_build} --test --crate-type=dylib \
+ --crate-name=%{real_crate_name} \
+ %{?rustc_edition:--edition=%{rustc_edition}} \
+ %rust_dylib_extern ciborium_io \
+ %rust_dylib_extern half \
+ %rust_dylib_extern hex \
+ --cfg='feature="std"' \
+ --cfg='feature="alloc"' \
+ ./src/lib.rs
+
+./%{real_crate_name}
+%endif
+
%clean
%post -p /sbin/ldconfig