Skip to content

Commit

Permalink
move bevy/animation under feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kayhhh committed Jul 26, 2024
1 parent 23b0fd8 commit 314646a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bevy_vrm = { path = "crates/bevy_vrm", version = "0.0.10" }
gltf_kun_vrm = { path = "crates/gltf_kun_vrm", version = "0.0.10" }
serde_vrm = { path = "crates/serde_vrm", version = "0.0.10" }

bevy = { version = "0.14.0", default-features = false, features = ["animation", "bevy_asset", "bevy_scene", "bevy_pbr"] }
bevy = { version = "0.14.0", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_pbr"] }
bevy_egui = { version = "0.28.0", default-features = false, features = ["open_url", "default_fonts", "render"] }
bevy_panorbit_camera = { version = "0.19.0", features = ["bevy_egui"] }
gltf_kun = { version = "0.0.13", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_vrm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ workspace = true

[features]
default = ["animations"]
animations = ["dep:lazy_static", "dep:paste"]
animations = ["bevy/animation", "dep:lazy_static", "dep:paste"]

[dependencies]
bevy.workspace = true
Expand Down

0 comments on commit 314646a

Please sign in to comment.