Update glam requirement from 0.28 to 0.29

Updates the requirements on [glam](https://github.com/bitshifter/glam-rs) to permit the latest version.
- [Changelog](https://github.com/bitshifter/glam-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/bitshifter/glam-rs/compare/0.28.0...0.29.0)

---
updated-dependencies:
- dependency-name: glam
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2024-09-09 18:14:50 +00:00 committed by GitHub
parent 90bb1adeb2
commit 8f56d94edd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ keywords = ["bevy"]
rust-version = "1.68.2" rust-version = "1.68.2"
[dependencies] [dependencies]
glam = { version = "0.28", features = ["bytemuck"] } glam = { version = "0.29", features = ["bytemuck"] }
thiserror = "1.0" thiserror = "1.0"
itertools = "0.13.0" itertools = "0.13.0"
serde = { version = "1", features = ["derive"], optional = true } serde = { version = "1", features = ["derive"], optional = true }
@ -33,7 +33,7 @@ rand = "0.8"
rand_chacha = "0.3" rand_chacha = "0.3"
# Enable the approx feature when testing. # Enable the approx feature when testing.
bevy_math = { path = ".", version = "0.15.0-dev", features = ["approx"] } bevy_math = { path = ".", version = "0.15.0-dev", features = ["approx"] }
glam = { version = "0.28", features = ["approx"] } glam = { version = "0.29", features = ["approx"] }
[features] [features]
default = ["rand", "bevy_reflect"] default = ["rand", "bevy_reflect"]

View file

@ -16,7 +16,7 @@ keywords = ["bevy", "3D", "graphics", "algorithm", "tangent"]
rust-version = "1.76.0" rust-version = "1.76.0"
[dependencies] [dependencies]
glam = "0.28" glam = "0.29"
[[example]] [[example]]
name = "generate" name = "generate"

View file

@ -39,7 +39,7 @@ thiserror = "1.0"
serde = "1" serde = "1"
smallvec = { version = "1.11", optional = true } smallvec = { version = "1.11", optional = true }
glam = { version = "0.28", features = ["serde"], optional = true } glam = { version = "0.29", features = ["serde"], optional = true }
petgraph = { version = "0.6", features = ["serde-1"], optional = true } petgraph = { version = "0.6", features = ["serde-1"], optional = true }
smol_str = { version = "0.2.0", features = ["serde"], optional = true } smol_str = { version = "0.2.0", features = ["serde"], optional = true }
uuid = { version = "1.0", optional = true, features = ["v4", "serde"] } uuid = { version = "1.0", optional = true, features = ["v4", "serde"] }