Skip to content

Commit

Permalink
lock bevy versions to avoid pulling x.x.1 from crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
HackerFoo committed Jan 6, 2023
1 parent 5f5a34c commit ccf601b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 33 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ debug_asset_server = ["bevy_internal/debug_asset_server"]
animation = ["bevy_internal/animation"]

[dependencies]
bevy_dylib = { path = "crates/bevy_dylib", version = "0.9.0", default-features = false, optional = true }
bevy_internal = { path = "crates/bevy_internal", version = "0.9.0", default-features = false }
bevy_dylib = { path = "crates/bevy_dylib", version = "=0.9.0", default-features = false, optional = true }
bevy_internal = { path = "crates/bevy_internal", version = "=0.9.0", default-features = false }

[target.'cfg(target_arch = "wasm32")'.dependencies]
bevy_internal = { path = "crates/bevy_internal", version = "0.9.0", default-features = false, features = [
bevy_internal = { path = "crates/bevy_internal", version = "=0.9.0", default-features = false, features = [
"webgl",
] }

Expand Down
60 changes: 30 additions & 30 deletions crates/bevy_internal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,37 +66,37 @@ animation = ["bevy_animation", "bevy_gltf?/bevy_animation"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.9.0" }
bevy_core = { path = "../bevy_core", version = "0.9.0" }
bevy_derive = { path = "../bevy_derive", version = "0.9.0" }
bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.9.0" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.9.0" }
bevy_input = { path = "../bevy_input", version = "0.9.0" }
bevy_log = { path = "../bevy_log", version = "0.9.0" }
bevy_math = { path = "../bevy_math", version = "0.9.0" }
bevy_ptr = { path = "../bevy_ptr", version = "0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy"] }
bevy_time = { path = "../bevy_time", version = "0.9.0" }
bevy_transform = { path = "../bevy_transform", version = "0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "0.9.0" }
bevy_window = { path = "../bevy_window", version = "0.9.0" }
bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" }
bevy_app = { path = "../bevy_app", version = "=0.9.0" }
bevy_core = { path = "../bevy_core", version = "=0.9.0" }
bevy_derive = { path = "../bevy_derive", version = "=0.9.0" }
bevy_diagnostic = { path = "../bevy_diagnostic", version = "=0.9.0" }
bevy_ecs = { path = "../bevy_ecs", version = "=0.9.0" }
bevy_hierarchy = { path = "../bevy_hierarchy", version = "=0.9.0" }
bevy_input = { path = "../bevy_input", version = "=0.9.0" }
bevy_log = { path = "../bevy_log", version = "=0.9.0" }
bevy_math = { path = "../bevy_math", version = "=0.9.0" }
bevy_ptr = { path = "../bevy_ptr", version = "=0.9.0" }
bevy_reflect = { path = "../bevy_reflect", version = "=0.9.0", features = ["bevy"] }
bevy_time = { path = "../bevy_time", version = "=0.9.0" }
bevy_transform = { path = "../bevy_transform", version = "=0.9.0" }
bevy_utils = { path = "../bevy_utils", version = "=0.9.0" }
bevy_window = { path = "../bevy_window", version = "=0.9.0" }
bevy_tasks = { path = "../bevy_tasks", version = "=0.9.0" }
# bevy (optional)
bevy_animation = { path = "../bevy_animation", optional = true, version = "0.9.0" }
bevy_asset = { path = "../bevy_asset", optional = true, version = "0.9.0" }
bevy_audio = { path = "../bevy_audio", optional = true, version = "0.9.0" }
bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "0.9.0" }
bevy_gltf = { path = "../bevy_gltf", optional = true, version = "0.9.0" }
bevy_pbr = { path = "../bevy_pbr", optional = true, version = "0.9.0" }
bevy_render = { path = "../bevy_render", optional = true, version = "0.9.0" }
bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "0.9.0" }
bevy_scene = { path = "../bevy_scene", optional = true, version = "0.9.0" }
bevy_sprite = { path = "../bevy_sprite", optional = true, version = "0.9.0" }
bevy_text = { path = "../bevy_text", optional = true, version = "0.9.0" }
bevy_ui = { path = "../bevy_ui", optional = true, version = "0.9.0" }
bevy_winit = { path = "../bevy_winit", optional = true, version = "0.9.0" }
bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.9.0" }
bevy_animation = { path = "../bevy_animation", optional = true, version = "=0.9.0" }
bevy_asset = { path = "../bevy_asset", optional = true, version = "=0.9.0" }
bevy_audio = { path = "../bevy_audio", optional = true, version = "=0.9.0" }
bevy_core_pipeline = { path = "../bevy_core_pipeline", optional = true, version = "=0.9.0" }
bevy_gltf = { path = "../bevy_gltf", optional = true, version = "=0.9.0" }
bevy_pbr = { path = "../bevy_pbr", optional = true, version = "=0.9.0" }
bevy_render = { path = "../bevy_render", optional = true, version = "=0.9.0" }
bevy_dynamic_plugin = { path = "../bevy_dynamic_plugin", optional = true, version = "=0.9.0" }
bevy_scene = { path = "../bevy_scene", optional = true, version = "=0.9.0" }
bevy_sprite = { path = "../bevy_sprite", optional = true, version = "=0.9.0" }
bevy_text = { path = "../bevy_text", optional = true, version = "=0.9.0" }
bevy_ui = { path = "../bevy_ui", optional = true, version = "=0.9.0" }
bevy_winit = { path = "../bevy_winit", optional = true, version = "=0.9.0" }
bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "=0.9.0" }

[target.'cfg(target_os = "android")'.dependencies]
# This version *must* be the same as the version used by winit,
Expand Down

0 comments on commit ccf601b

Please sign in to comment.