use fixed version of uuid

use version before the getrandom update that needs to specify a backend
This commit is contained in:
François Mockers 2025-02-06 22:38:42 +01:00
parent 9d122a7d12
commit edba2c445a
6 changed files with 6 additions and 6 deletions

View File

@ -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" }

View File

@ -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"]

View File

@ -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

View File

@ -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]

View File

@ -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

View File

@ -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",