Your message dated Thu, 18 Jun 2026 01:06:23 +0000
with message-id <[email protected]>
and subject line Bug#1136950: fixed in rust-ultraviolet 0.10.0-2
has caused the Debian Bug report #1136950,
regarding upgrading crate wide to v1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1136950: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1136950
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: rust-ultraviolet
Version: 0.10.0-1
Severity: normal
Tags: patch

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Hi,

I will soon upgrade rust-wide in unstable, and have released to
experimental to allow testing builds against it.

rust-ultraviolet needs some adjustments for that. I have provided a
patch that seems to work fine. Unfortunately that patch is not
backwards compatible with rust-wide currently in unstable.

Kind regards,

 - Jonas

-----BEGIN PGP SIGNATURE-----

iQJABAEBCgAqFiEEn+Ppw2aRpp/1PMaELHwxRsGgASEFAmoJzWwMHGRyQGpvbmVz
LmRrAAoJECx8MUbBoAEht4gP/RRTB0DjIxQ0yH8CQAoVgWfCVWTeB86o6e/QoFbh
n3BJyFr5LF6b3iJ+POygZU0/G3Ygz7P6YJH6o4dqGC0k32XgKygwy7ZSgmAdmoHi
0DQ1Iu6AIcXrhn8L/UsF0zUUnYMA6UkufC7EsXLVk5BEgst8kdhvDeLIPvYA8ieC
s/CMRZgqN+pOtXRZZaf7cTC04CQolk1Ny/J1e0p7FolWCuAAQ+1K95x6xzqNEKC7
zTUbbvNBsBbN+Ja9uPpfAHIpJWPpRYnFIjJCzufkOCp/7KXa4st4DP6WBjbVIszJ
wvyhwC8jtlNGZ2Rev1u6N7jsHQkwZ6fr3FlCGyfbDkf+w4GiWvGfo3ZOZny5oaBm
zenYfzkXJQ0E8jrFV2i21YUi2ybeJ55eGR1EC/x1XJfMlPEc6Bmsm6/n0F6/v0Gt
3JDFUe07h3NQJ4zLp5fa9wAX7Ch5XW3Dy7xUuCXWnRzB8Yh4vx4caUVcdbFlNsDm
1fo61kZMTdTkfHDuDDf9N1HPBhPr0nm8oSkEs+wKNOkzKO3mr5qRb25M/OkPaN0s
9vMb6WWHC2rqw3Rz1en91vHiyEOjNMdH9rMAkZ7dj/UMmHmxcWGqq3zqGyY52FIW
u6LX/oN+kKGR7iCbPEQ2thjPWypYyh0MyVwPWd45hXdTTbWsBEN7t59ZPFWui/jp
I8pu
=JWMv
-----END PGP SIGNATURE-----
Description: use newer major version of crate wide
Author: Jonas Smedegaard <[email protected]>
Forwarded: not-needed
Last-Update: 2026-05-17
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -68,7 +68,7 @@
 optional = true
 
 [dependencies.wide]
-version = "0.7"
+version = "1"
 
 [dev-dependencies.serde_test]
 version = "1.0"
--- a/src/util.rs
+++ b/src/util.rs
@@ -29,7 +29,7 @@
                 let r = (self - other).abs();
                 let eps = $t::splat(0.01);
 
-                r.cmp_ge(eps).none()
+                r.simd_ge(eps).none()
             }
         })+
     };
--- a/src/vec/vec2.rs
+++ b/src/vec/vec2.rs
@@ -608,7 +608,7 @@
                 let ndi = n.dot(i);
 
                 let k = one - eta * eta * (one - ndi * ndi);
-                let mask = k.cmp_lt($t::splat(0.0));
+                let mask = k.simd_lt($t::splat(0.0));
 
                 let out = i * eta - (eta * ndi + k.sqrt()) * n;
 
--- a/src/vec/vec3.rs
+++ b/src/vec/vec3.rs
@@ -686,7 +686,7 @@
                 let ndi = n.dot(i);
 
                 let k = one - eta * eta * (one - ndi * ndi);
-                let mask = k.cmp_lt($t::splat(0.0));
+                let mask = k.simd_lt($t::splat(0.0));
 
                 let out = i.mul_add(Self::broadcast(eta), -(eta * ndi + 
k.sqrt()) * n);
 

--- End Message ---
--- Begin Message ---
Source: rust-ultraviolet
Source-Version: 0.10.0-2
Done: Peter Michael Green <[email protected]>

We believe that the bug you reported is fixed in the latest version of
rust-ultraviolet, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Peter Michael Green <[email protected]> (supplier of updated rust-ultraviolet 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Thu, 18 Jun 2026 00:38:36 +0000
Source: rust-ultraviolet
Architecture: source
Version: 0.10.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Rust Maintainers 
<[email protected]>
Changed-By: Peter Michael Green <[email protected]>
Closes: 1136950
Changes:
 rust-ultraviolet (0.10.0-2) unstable; urgency=medium
 .
   * Team upload.
   * Package ultraviolet 0.10.0 from crates.io using debcargo 2.8.3
   * Add patch for rust-wide 1, thanks to Jonas Smedegaard (Closes: #1136950)
Checksums-Sha1:
 0ee3d6946d064ea1736b11e110ed2637918f4772 2340 rust-ultraviolet_0.10.0-2.dsc
 e1a3fb1813ac27bc81349f3990fb8392e83997e4 3816 
rust-ultraviolet_0.10.0-2.debian.tar.xz
 6a770f41e8b94a989f4109d0e425c0db0c6b6ed0 8896 
rust-ultraviolet_0.10.0-2_source.buildinfo
Checksums-Sha256:
 7dc8b6e1686d78d86c7e0a3dc9c22fff5ea1209382b709ac185f33f66076aef4 2340 
rust-ultraviolet_0.10.0-2.dsc
 4526f782f4d1abae4fb21ea055d9d6ffa9dfac8dbb57c9b40d00cd833c7520eb 3816 
rust-ultraviolet_0.10.0-2.debian.tar.xz
 26ff5fc99791ddfedb5b193080078cc035929d69b747f70838a717c6ab6cf4f7 8896 
rust-ultraviolet_0.10.0-2_source.buildinfo
Files:
 8e0e4a8fbe077e7a08bcc6ab52ce8bd8 2340 rust optional 
rust-ultraviolet_0.10.0-2.dsc
 2c08d0be9516bc7679d9dbf9c02bb325 3816 rust optional 
rust-ultraviolet_0.10.0-2.debian.tar.xz
 cdb8f49258d9d02bde9b3f506ea0d409 8896 rust optional 
rust-ultraviolet_0.10.0-2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJIBAEBCAAyFiEEU0DQATYMplbjSX63DEjqKnqP/XsFAmozPvgUHHBsdWd3YXNo
QGRlYmlhbi5vcmcACgkQDEjqKnqP/Xsvug//XDsGNWhBa7kBoJ9l0G7PCQwyoIjB
nl0wKzfw7kvLqKl6PxUgWXxrGoJAzI4iibHxvTpgVDmZP98gPJlCD0LcB6ho8TS+
Veu1dHOE0m4n9YxejMUapBgpDeSKEEmhBeQP7hH91FwTIlqS4/dehOMz9g/xqg7k
tKWGF6j7cEgSzRcagqMAT7tNr/hGwhGGY14k+AOCYRpA41Ceb5LWJ5wodOKEttWz
eKErTLBEtFNeJp8WLTGaOC2drC2uhR+Drul7FZ/L00IeSfkj/Iz4VcH5bWQt1so2
HmpdI1q7WULVykWCIRxj55L+0QDBdgJEPGeJ3a6yZ7G3nzPSO0KfHp/Vk5sWZKk8
3s+kd8qw/91Zfx8sRriNSV/W0Uan3ksSO4QyIucyHjZTMqTfsBLJYtMOdoU0WSvj
1AketEjUupEVBuejQwte/9amm20L06TSA30QhbJa1dITlKCEPVnIcUc2wxDj1awe
MZ6tPKsDNI6oVP/b3sTVjHnmjiO05J91iwoJzwEhETjAVSax5KRMF88LcOaE3zbr
1argnBFBpQ5e+9gNQGPIiLaFZXTkDrQiGL8+V1EjhjchBaZc/QcnMO+xw/o7jc6q
HdFV5eKEOMmPoSreQsuE2AtsHAFsO143usFgMNMNUzX67W6UW4WQYm/1RYDnkH3M
ORsoGxQxuzW4iwE=
=G3Q4
-----END PGP SIGNATURE-----

Attachment: pgpwb8dEu1uu5.pgp
Description: PGP signature


--- End Message ---

Reply via email to