forked from StarArawn/bevy_ecs_tilemap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 930 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 930 Bytes
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
[package]
name = "bevy_ecs_tilemap"
description = "A tilemap rendering plugin for bevy which is more ECS friendly by having an entity per tile."
version = "0.4.0"
authors = ["John Mitchell"]
homepage = "https://github.com/StarArawn/bevy_ecs_tilemap"
repository = "https://github.com/StarArawn/bevy_ecs_tilemap"
license-file = "LICENSE"
edition = "2018"
exclude = [
"assets/*",
"screenshots/*",
]
[features]
default = []
ldtk = ["anyhow", "ldtk_rust", "serde_json"]
tiled_map = ["anyhow", "tiled"]
[dependencies]
anyhow = { version = "1.0", optional = true }
bevy = { version = "0.5", default-features = false }
ldtk_rust = { version = "0.5", optional = true }
morton-encoding = "2.0"
log = "0.4"
serde_json = { version = "1.0", optional = true }
tiled = { version = "0.9", default-features = false, optional = true }
[dev-dependencies]
bevy = { version = "0.5", default-features = true }
rand = "0.8"
env_logger = "0.8"