Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 12, 2026

Updates the requirements on parry3d-f64 to permit the latest version.

Changelog

Sourced from parry3d-f64's changelog.

0.26.0

Breaking changes

This release migrates parry from nalgebra to glam (via the glamx crate) for future compatibility with rust-gpu. This is a major breaking change affecting almost all public APIs.

Type renames

  • IsometryPose (using glamx::Pose2/Pose3)
  • RotationRot2/Rot3 (using glamx::Rot2/Rot3)
  • IsometryOpsPoseOps
  • IsometryOptPoseOpt

Removed types

  • Point<Real> - use Vector instead. Points and vectors are now unified.
  • UnitVector<Real> - use Vector instead. Normalization is no longer encoded in the type.
  • Translation<Real> - use Vector for translations.

Math type changes

  • Vector is now glam::Vec2/Vec3/DVec2/DVec3 depending on dimension and precision features
  • Matrix is now glam::Mat2/Mat3/DMat2/DMat3
  • The math module now re-exports glam types and provides dimension-agnostic aliases

API signature changes

  • Many functions that previously took &Point<Real> or &Vector<Real> now take Vector by value
  • Functions taking &Isometry<Real> now take &Pose or Pose by value
  • HalfSpace::new now takes Vector instead of Unit<Vector<Real>>
  • Shape constructors like Segment::new, Triangle::new, Capsule::new now take Vector instead of Point
  • Aabb::mins and Aabb::maxs are now Vector instead of Point<Real>

Migration guide

If your codebase currently relies on nalgebra, note that nalgebra and glamx provide type conversion. Enable the corresponding features:

  • nalgebra = { version = "0.34", features = [ "convert-glam030" ] }
  • glamx = { version = "0.1", features = ["nalgebra"] } then you can convert between glam and nalgebra types using .into().
// Before (nalgebra)
use parry3d::na::{Point3, Vector3, Isometry3, Unit};
let point = Point3::new(1.0, 2.0, 3.0);
let vector = Vector3::new(1.0, 0.0, 0.0);
let normal = Unit::new_normalize(vector);
let pos = Isometry3::translation(1.0, 2.0, 3.0);
</tr></table>

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [parry3d-f64](https://github.com/dimforge/parry) to permit the latest version.
- [Changelog](https://github.com/dimforge/parry/blob/master/CHANGELOG.md)
- [Commits](dimforge/parry@v0.25.1...v0.26.0)

---
updated-dependencies:
- dependency-name: parry3d-f64
  dependency-version: 0.26.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jan 12, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant