Skip to content

Commit edba2c4

Browse files
committed
use fixed version of uuid
use version before the getrandom update that needs to specify a backend
1 parent 9d122a7 commit edba2c4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

crates/bevy_asset/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ derive_more = { version = "1", default-features = false, features = [
4949
"from",
5050
"display",
5151
] }
52-
uuid = { version = "1.0", features = ["v4"] }
52+
uuid = { version = "=1.12", features = ["v4"] }
5353

5454
[target.'cfg(target_os = "android")'.dependencies]
5555
bevy_window = { path = "../bevy_window", version = "0.15.1" }

crates/bevy_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.15.1" }
2020

2121
# other
2222
serde = { version = "1.0", optional = true }
23-
uuid = "1.0"
23+
uuid = "=1.12"
2424

2525
[features]
2626
default = ["bevy_reflect"]

crates/bevy_picking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.15.1" }
2828
bevy_window = { path = "../bevy_window", version = "0.15.1" }
2929

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

3333
[lints]
3434
workspace = true

crates/bevy_reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ assert_type_match = "0.1.1"
5050
glam = { version = "0.29", features = ["serde"], optional = true }
5151
petgraph = { version = "0.6", features = ["serde-1"], optional = true }
5252
smol_str = { version = "0.2.0", features = ["serde"], optional = true }
53-
uuid = { version = "1.0", optional = true, features = ["v4", "serde"] }
53+
uuid = { version = "=1.12", optional = true, features = ["v4", "serde"] }
5454
wgpu-types = { version = "23", features = ["serde"], optional = true }
5555

5656
[dev-dependencies]

crates/bevy_reflect/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.15.1" }
2323
proc-macro2 = "1.0"
2424
quote = "1.0"
2525
syn = { version = "2.0", features = ["full"] }
26-
uuid = { version = "1.1", features = ["v4"] }
26+
uuid = { version = "=1.12", features = ["v4"] }
2727

2828
[lints]
2929
workspace = true

crates/bevy_scene/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ bevy_render = { path = "../bevy_render", version = "0.15.1", optional = true }
2828

2929
# other
3030
serde = { version = "1.0", features = ["derive"], optional = true }
31-
uuid = { version = "1.1", features = ["v4"] }
31+
uuid = { version = "=1.12", features = ["v4"] }
3232
derive_more = { version = "1", default-features = false, features = [
3333
"error",
3434
"from",

0 commit comments

Comments
 (0)