Skip to content

Commit 8005e04

Browse files
authored
Merge pull request #170 from svenstaro/bump-nalgebra
Bump nalgebra
2 parents 52f3742 + 410422b commit 8005e04

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- uses: dtolnay/rust-toolchain@master
7373
with:
7474
# use a known good version (e.g. on Jan 14 2025, a faulty `rustc` nightly panicked)
75-
toolchain: nightly-2025-02-17
75+
toolchain: nightly-2025-11-12
7676
components: rust-src
7777

7878
- name: Install cargo-fuzz

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
## 0.12.0 - 2025-??-??
99
- Replace hand-written x86_64 SIMD with safe and portable [`wide`](https://crates.io/crates/wide) SIMD. [#158](https://github.com/svenstaro/bvh/pull/158) (thanks @finnbear)
1010
- Update Rust edition to 2024
11-
- Bump MSRV to 1.85
11+
- Bump MSRV to 1.87
1212

1313
## 0.11.0 - 2025-02-18
1414
- **Breaking change:** BVH traversal now accepts a `Query: IntersectsAabb` rather than a `Ray`,

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bvh"
33
description = "A fast BVH using SAH"
44
version = "0.11.0"
55
edition = "2024"
6-
rust-version = "1.85" # may raise to versions that are at least 1y old.
6+
rust-version = "1.87" # may raise to versions that are at least 1y old.
77
authors = [
88
"Sven-Hendrik Haase <[email protected]>",
99
"Alexander Dmitriev <[email protected]>",
@@ -18,7 +18,7 @@ license = "MIT"
1818
[dependencies]
1919
serde = { optional = true, version = "1", features = ["derive"] }
2020
num-traits = "0.2.19"
21-
nalgebra = { version = "0.33.0", features = ["default", "serde-serialize"] }
21+
nalgebra = { version = "0.34.0", features = ["default", "serde-serialize"] }
2222
rayon = { optional = true, version = "1.8.1" }
2323
wide = { optional = true, version = "0.8" }
2424

fuzz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ cargo-fuzz = true
1212
arbitrary = { version = "1.4.1", features = ["derive"] }
1313
approx = "0.5"
1414
libfuzzer-sys = "0.4"
15-
nalgebra = "0.33"
16-
ordered-float = { version = "4.6.0", features = ["arbitrary"] }
15+
nalgebra = "0.34"
16+
ordered-float = { version = "5.1.0", features = ["arbitrary"] }
1717

1818
[dependencies.bvh]
1919
path = ".."

0 commit comments

Comments
 (0)