Skip to content

Commit

Permalink
use fixed version of uuid
Browse files Browse the repository at this point in the history
use version before the getrandom update that needs to specify a backend
  • Loading branch information
mockersf committed Feb 6, 2025
1 parent 9d122a7 commit edba2c4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_asset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ derive_more = { version = "1", default-features = false, features = [
"from",
"display",
] }
uuid = { version = "1.0", features = ["v4"] }
uuid = { version = "=1.12", features = ["v4"] }

[target.'cfg(target_os = "android")'.dependencies]
bevy_window = { path = "../bevy_window", version = "0.15.1" }
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.15.1" }

# other
serde = { version = "1.0", optional = true }
uuid = "1.0"
uuid = "=1.12"

[features]
default = ["bevy_reflect"]
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_picking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.15.1" }
bevy_window = { path = "../bevy_window", version = "0.15.1" }

crossbeam-channel = { version = "0.5", optional = true }
uuid = { version = "1.1", features = ["v4"] }
uuid = { version = "=1.12", features = ["v4"] }

[lints]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_reflect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ assert_type_match = "0.1.1"
glam = { version = "0.29", features = ["serde"], optional = true }
petgraph = { version = "0.6", features = ["serde-1"], optional = true }
smol_str = { version = "0.2.0", features = ["serde"], optional = true }
uuid = { version = "1.0", optional = true, features = ["v4", "serde"] }
uuid = { version = "=1.12", optional = true, features = ["v4", "serde"] }
wgpu-types = { version = "23", features = ["serde"], optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_reflect/derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.1" }
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full"] }
uuid = { version = "1.1", features = ["v4"] }
uuid = { version = "=1.12", features = ["v4"] }

[lints]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_scene/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bevy_render = { path = "../bevy_render", version = "0.15.1", optional = true }

# other
serde = { version = "1.0", features = ["derive"], optional = true }
uuid = { version = "1.1", features = ["v4"] }
uuid = { version = "=1.12", features = ["v4"] }
derive_more = { version = "1", default-features = false, features = [
"error",
"from",
Expand Down

0 comments on commit edba2c4

Please sign in to comment.