diff --git a/Cargo.toml b/Cargo.toml index b1898d64bd..655ba15db3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -232,7 +232,13 @@ bevy_gilrs = ["bevy_internal/bevy_gilrs"] # [glTF](https://www.khronos.org/gltf/) support bevy_gltf = ["bevy_internal/bevy_gltf", "bevy_asset", "bevy_scene", "bevy_pbr"] # [FBX](https://www.autodesk.com/products/fbx) -bevy_fbx = ["bevy_internal/bevy_fbx", "bevy_asset", "bevy_scene", "bevy_pbr", "bevy_animation"] +bevy_fbx = [ + "bevy_internal/bevy_fbx", + "bevy_asset", + "bevy_scene", + "bevy_pbr", + "bevy_animation", +] # Adds PBR rendering bevy_pbr = [ diff --git a/crates/bevy_fbx/Cargo.toml b/crates/bevy_fbx/Cargo.toml index 031a67dcaa..ed1ddfdc75 100644 --- a/crates/bevy_fbx/Cargo.toml +++ b/crates/bevy_fbx/Cargo.toml @@ -12,7 +12,9 @@ keywords = ["bevy"] bevy_app = { path = "../bevy_app", version = "0.16.0-dev" } bevy_asset = { path = "../bevy_asset", version = "0.16.0-dev" } bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-dev" } -bevy_scene = { path = "../bevy_scene", version = "0.16.0-dev", features = ["bevy_render"] } +bevy_scene = { path = "../bevy_scene", version = "0.16.0-dev", features = [ + "bevy_render", +] } bevy_render = { path = "../bevy_render", version = "0.16.0-dev" } bevy_pbr = { path = "../bevy_pbr", version = "0.16.0-dev" } bevy_mesh = { path = "../bevy_mesh", version = "0.16.0-dev" } @@ -20,7 +22,9 @@ bevy_transform = { path = "../bevy_transform", version = "0.16.0-dev" } bevy_math = { path = "../bevy_math", version = "0.16.0-dev" } bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-dev" } bevy_utils = { path = "../bevy_utils", version = "0.16.0-dev" } -bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-features = false, features = ["std"] } +bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-features = false, features = [ + "std", +] } bevy_animation = { path = "../bevy_animation", version = "0.16.0-dev" } bevy_color = { path = "../bevy_color", version = "0.16.0-dev" } bevy_image = { path = "../bevy_image", version = "0.16.0-dev" }