[package] name = "micro_ldtk" version = "0.11.0" edition = "2021" authors = [ "Louis Capitanchik " ] repository = "https://lab.lcr.gr/microhacks/bevy-micro-ldtk.git" description = "Load data from LDTK, index it and make it accessible through Bevy assets, extract and use autotile rules" license = "Apache-2.0" [features] default = ["ldtk_1_5_3", "autotile"] ldtk_1_5_3 = ["_supports_ldtk", "_supports_intgridgroup", "_optional_tile_list"] ldtk_1_4_1 = ["_supports_ldtk", "_supports_intgridgroup"] ldtk_1_4_0 = ["_supports_ldtk", "_supports_intgridgroup"] ldtk_1_3_0 = ["_supports_ldtk"] ldtk_1_2_5 = ["_supports_ldtk"] ldtk_1_2_4 = ["_supports_ldtk"] ldtk_1_2_3 = ["_supports_ldtk"] ldtk_1_2_2 = ["_supports_ldtk"] ldtk_1_2_1 = ["_supports_ldtk"] ldtk_1_2_0 = ["_supports_ldtk"] ldtk_1_1_3 = ["_supports_ldtk"] ldtk_1_1_2 = ["_supports_ldtk"] ldtk_1_1_1 = ["_supports_ldtk"] ldtk_1_1_0 = ["_supports_ldtk"] ldtk_1_0_0 = ["_supports_ldtk"] autotile = ["micro_autotile"] _supports_intgridgroup = [] _supports_ldtk = [] _optional_tile_list = [] no_panic = [] [dependencies] bevy = { version = "0.14", default-features = false, features = ["bevy_render", "bevy_sprite", "bevy_asset", "serialize"] } anyhow = "1.0" thiserror = "1.0" log = "0.4" serde = "1.0" serde_json = "1.0" num-traits = "0.2" quadtree_rs = "0.1" micro_autotile = { version = "0.1", optional = true }