Skip to content

Commit

Permalink
Depend on Bevy 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Nov 6, 2023
1 parent a531458 commit ea40892
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions bevy_asset_loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,28 @@ categories = ["game-development"]
readme = "README.md"

[features]
# This feature adds support for bevy's TextureAtlas assets
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"]
3d = ["bevy/bevy_pbr", "bevy_asset_loader_derive/3d"]
standard_dynamic_assets = ["dep:bevy_common_assets", "dep:serde"]
progress_tracking = ["dep:iyes_progress"]

[dependencies]
bevy = { git = "https://github.com/bevyengine/bevy", default-features = false, features = ["bevy_asset"] }
#bevy = {path = "../../bevy", default-features = false, features = ["bevy_asset"]}
bevy = { version = "0.12", default-features = false, features = ["bevy_asset"] }
bevy_asset_loader_derive = { version = "=0.17.0", path = "../bevy_asset_loader_derive" }
anyhow = "1"
path-slash = "0.2"

bevy_common_assets = { git = "https://github.com/NiklasEi/bevy_common_assets", branch = "bevy_main", features = ["ron"], optional = true }
bevy_common_assets = { version = "0.8.0", features = ["ron"], optional = true }
serde = { version = "1", optional = true }
iyes_progress = { git = "https://github.com/NiklasEi/iyes_progress", branch = "bevy_main", optional = true }

[dev-dependencies]
bevy = { git = "https://github.com/bevyengine/bevy", features = ["vorbis"] }
#bevy = {path = "../../bevy", features = ["vorbis"]}
bevy = { version = "0.12", features = ["vorbis"] }
anyhow = "1"
iyes_progress = { git = "https://github.com/NiklasEi/iyes_progress", branch = "bevy_main" }
bevy_common_assets = { git = "https://github.com/NiklasEi/bevy_common_assets", branch = "bevy_main", features = ["ron"] }
bevy_common_assets = { version = "0.8.0", features = ["ron"] }
serde = { version = "1" }
trybuild = { version = "1.0" }

Expand Down

0 comments on commit ea40892

Please sign in to comment.