https://bugzilla.redhat.com/show_bug.cgi?id=1628005 --- Comment #2 from Robert-André Mauchin <zebob.m@xxxxxxxxx> --- The issue in criterion plot is that default features are disabled for num-complex: num-complex = { version = "0.1", default-features = false } This disables #[cfg(feature = "std") and thus norm and arg: #[cfg(feature = "std")] impl<T: Clone + Float> Complex<T> { /// Calculate |self| #[inline] pub fn norm(&self) -> T { self.re.hypot(self.im) } /// Calculate the principal Arg of self. #[inline] pub fn arg(&self) -> T { self.im.atan2(self.re) } -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list -- package-review@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to package-review-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/package-review@xxxxxxxxxxxxxxxxxxxxxxx