Skip to content

Commit

Permalink
Remove features for optional dependencies and bump bevy_common_assets
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Mar 24, 2023
1 parent 84eb35c commit 5de374f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bevy_asset_loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ readme = "README.md"
2d = ["bevy/bevy_sprite", "bevy_asset_loader_derive/2d"]
# This feature adds support for bevy's StandardMaterial assets
3d = ["bevy/bevy_pbr", "bevy/bevy_render", "bevy_asset_loader_derive/3d"]
standard_dynamic_assets = ["bevy_common_assets", "serde"]
progress_tracking = ["iyes_progress"]
standard_dynamic_assets = ["dep:bevy_common_assets", "dep:serde"]
progress_tracking = ["dep:iyes_progress"]

[dependencies]
bevy = { version = "0.10", default-features = false, features = ["bevy_asset"] }
bevy_asset_loader_derive = { version = "=0.15.0", path = "../bevy_asset_loader_derive" }
anyhow = "1"

bevy_common_assets = { version = "0.5.0", features = ["ron"], optional = true }
bevy_common_assets = { version = "0.6.0", features = ["ron"], optional = true }
serde = { version = "1", optional = true }
iyes_progress = { version = "0.8", optional = true }

[dev-dependencies]
bevy = { version = "0.10", features = ["vorbis"] }
anyhow = "1"
iyes_progress = { version = "0.8" }
bevy_common_assets = { version = "0.5.0", features = ["ron"] }
bevy_common_assets = { version = "0.6.0", features = ["ron"] }
serde = { version = "1" }
trybuild = { version = "1.0" }

Expand Down

0 comments on commit 5de374f

Please sign in to comment.