Skip to content

Commit

Permalink
Update ahash to 0.8.7 (#11785)
Browse files Browse the repository at this point in the history
# Objective

`bevy_utils` only requires aHash 0.8.3, which is broken on Rust 1.7.6:
```
error: could not compile `ahash` (lib) due to 1 previous error
error[E0635]: unknown feature `stdsimd`
```

See tkaitchuck/aHash#200

This is fixed in aHash 0.8.7, so require at least that version
(Cargo.lock is already up to date).
  • Loading branch information
SpecificProtagonist authored Feb 10, 2024
1 parent f84672b commit 55ada61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["bevy"]
detailed_trace = []

[dependencies]
ahash = "0.8.3"
ahash = "0.8.7"
tracing = { version = "0.1", default-features = false, features = ["std"] }
web-time = { version = "0.2" }
uuid = { version = "1.1", features = ["v4", "serde"] }
Expand Down

0 comments on commit 55ada61

Please sign in to comment.