-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
37 lines (34 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "bevy_tmx"
version = "0.2.0"
authors = ["Bram Buurlage"]
edition = "2018"
readme = "readme.md"
description = "Scene loader for .tmx files created by the Tiled map editor"
license = "MIT"
repository = "https://github.com/Kurble/bevy_tmx"
documentation = "https://docs.rs/bevy_tmx"
keywords = ["bevy", "tiled", "tmx", "scene", "asset"]
categories = ["game-development"]
[dependencies]
bevy_app = { version = "0.5", optional = true }
bevy_asset = { version = "0.5", optional = true }
bevy_ecs = { version = "0.5", optional = true }
bevy_render = { version = "0.5", optional = true }
bevy_sprite = { version = "0.5", optional = true }
bevy_transform = { version = "0.5", optional = true }
bevy_scene = { version = "0.5", optional = true }
bevy_reflect = "0.5"
bevy_utils = "0.5"
bevy_math = "0.5"
anyhow = "1"
xml-rs = "0.8"
libflate = "1"
base64 = "0.13"
image = "0.23"
async-mutex = "1"
[dev-dependencies]
bevy = "0.5"
[features]
default = ["plugin"]
plugin = ["bevy_app", "bevy_asset", "bevy_ecs", "bevy_render", "bevy_sprite", "bevy_transform", "bevy_scene"]