[package] name = "ryot_assets" version = "0.2.2" edition = "2021" authors = [ "Lucas Grossi ", "Luan Santos ", ] license = "AGPL-3.0-only" description = "Manages asset loading and processing, offering robust tools for efficient game resource management." homepage = "https://github.com/ry-ot/Ryot" repository = "https://github.com/ry-ot/Ryot" documentation = "https://docs.rs/ryot/" keywords = ["asset-management", "resource-loading", "game-assets", "ryot"] categories = ["game-development", "game-engines", "games"] [package.metadata.docs.rs] rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"] all-features = true [dependencies] bevy_app.workspace = true bevy_asset.workspace = true bevy_ecs.workspace = true bevy_math.workspace = true bevy_reflect.workspace = true bevy_render.workspace = true bevy_sprite.workspace = true bevy_utils.workspace = true bevy_asset_loader.workspace = true bevy_common_assets.workspace = true ryot_utils = { path = "../ryot_utils", version = "0.2" } ryot_core = { path = "../ryot_core", version = "0.2" } ryot_sprites = { path = "../ryot_sprites", version = "0.2" } ryot_tiled = { path = "../ryot_tiled", version = "0.2" } ryot_tibia = { path = "../ryot_tibia", version = "0.2.0", optional = true } async-std = "1.12.0" derive_more.workspace = true glam.workspace = true serde_repr = "0.1" serde.workspace = true serde_json.workspace = true strum.workspace = true thiserror.workspace = true [dev-dependencies] quickcheck.workspace = true quickcheck_macros.workspace = true rstest.workspace = true time-test.workspace = true rand.workspace = true