diff --git a/crates/bevy_animation/Cargo.toml b/crates/bevy_animation/Cargo.toml index 11e819806c506..bbae9151813dc 100644 --- a/crates/bevy_animation/Cargo.toml +++ b/crates/bevy_animation/Cargo.toml @@ -40,13 +40,13 @@ thiserror = { version = "2", default-features = false } derive_more = { version = "1", default-features = false, features = ["from"] } either = "1.13" thread_local = "1" -uuid = { version = "1.13.1", features = ["v4"] } +uuid = { version = "1", features = ["v4"] } smallvec = "1" tracing = { version = "0.1", default-features = false, features = ["std"] } [target.'cfg(target_arch = "wasm32")'.dependencies] # TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption. -uuid = { version = "1.13.1", default-features = false, features = ["js"] } +uuid = { version = "1", default-features = false, features = ["js"] } [lints] workspace = true diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 2c7c918300536..2a670680be1cd 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -49,7 +49,7 @@ ron = "0.8" serde = { version = "1", features = ["derive"] } thiserror = { version = "2", default-features = false } derive_more = { version = "1", default-features = false, features = ["from"] } -uuid = { version = "1.13.1", features = ["v4"] } +uuid = { version = "1", features = ["v4"] } tracing = { version = "0.1", default-features = false, features = ["std"] } [target.'cfg(target_os = "android")'.dependencies] @@ -65,7 +65,7 @@ web-sys = { version = "0.3", features = [ ] } wasm-bindgen-futures = "0.4" js-sys = "0.3" -uuid = { version = "1.13.1", default-features = false, features = ["js"] } +uuid = { version = "1", default-features = false, features = ["js"] } bevy_app = { path = "../bevy_app", version = "0.16.0-dev", default-features = false, features = [ "web", ] } diff --git a/crates/bevy_picking/Cargo.toml b/crates/bevy_picking/Cargo.toml index f02e5237aaa64..b172339156e64 100644 --- a/crates/bevy_picking/Cargo.toml +++ b/crates/bevy_picking/Cargo.toml @@ -32,12 +32,12 @@ bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-fea # other crossbeam-channel = { version = "0.5", optional = true } -uuid = { version = "1.13.1", features = ["v4"] } +uuid = { version = "1", features = ["v4"] } tracing = { version = "0.1", default-features = false, features = ["std"] } [target.'cfg(target_arch = "wasm32")'.dependencies] # TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption. -uuid = { version = "1.13.1", default-features = false, features = ["js"] } +uuid = { version = "1", default-features = false, features = ["js"] } [lints] workspace = true diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml index bf85258700f5d..81eb91b64be1a 100644 --- a/crates/bevy_reflect/Cargo.toml +++ b/crates/bevy_reflect/Cargo.toml @@ -106,7 +106,7 @@ petgraph = { version = "0.7", features = ["serde-1"], optional = true } smol_str = { version = "0.2.0", default-features = false, features = [ "serde", ], optional = true } -uuid = { version = "1.13.1", default-features = false, optional = true, features = [ +uuid = { version = "1", default-features = false, optional = true, features = [ "v4", "serde", ] } diff --git a/crates/bevy_reflect/derive/Cargo.toml b/crates/bevy_reflect/derive/Cargo.toml index ad6ec8cd2f396..e1792020bb732 100644 --- a/crates/bevy_reflect/derive/Cargo.toml +++ b/crates/bevy_reflect/derive/Cargo.toml @@ -23,11 +23,11 @@ bevy_macro_utils = { path = "../../bevy_macro_utils", version = "0.16.0-dev" } proc-macro2 = "1.0" quote = "1.0" syn = { version = "2.0", features = ["full"] } -uuid = { version = "1.13.1", features = ["v4"] } +uuid = { version = "1", features = ["v4"] } [target.'cfg(target_arch = "wasm32")'.dependencies] # TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption. -uuid = { version = "1.13.1", default-features = false, features = ["js"] } +uuid = { version = "1", default-features = false, features = ["js"] } [lints] workspace = true diff --git a/crates/bevy_scene/Cargo.toml b/crates/bevy_scene/Cargo.toml index 3bb913c85908b..9c74a563f72b3 100644 --- a/crates/bevy_scene/Cargo.toml +++ b/crates/bevy_scene/Cargo.toml @@ -33,13 +33,13 @@ bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-fea # other serde = { version = "1.0", features = ["derive"], optional = true } -uuid = { version = "1.13.1", features = ["v4"] } +uuid = { version = "1", features = ["v4"] } thiserror = { version = "2", default-features = false } derive_more = { version = "1", default-features = false, features = ["from"] } [target.'cfg(target_arch = "wasm32")'.dependencies] # TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption. -uuid = { version = "1.13.1", default-features = false, features = ["js"] } +uuid = { version = "1", default-features = false, features = ["js"] } [dev-dependencies] postcard = { version = "1.0", features = ["alloc"] }