-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
33 lines (29 loc) · 1.08 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
[package]
name = "bevy_tile_atlas"
version = "0.7.0"
edition = "2021"
authors = ["Gino Valente <[email protected]>"]
description = "A TextureAtlas builder for ordered tilesets"
repository = "https://github.com/MrGVSV/bevy_tile_atlas"
license = "MIT OR Apache-2.0"
keywords = ["bevy", "tile", "tileset", "texture", "ordered"]
readme = "README.md"
exclude = ["assets/**/*", ".github/**/*"]
[dependencies]
bevy_asset = { version = "0.11", default-features = false }
bevy_ecs = { version = "0.11", default-features = false }
bevy_log = { version = "0.11", default-features = false, optional = true }
bevy_math = { version = "0.11", default-features = false }
bevy_render = { version = "0.11", default-features = false }
bevy_sprite = { version = "0.11", default-features = false }
bevy_utils = { version = "0.11", default-features = false }
thiserror = "1.0.30"
[dev-dependencies]
bevy = "0.11"
[features]
default = ["debug"]
# Enables logging (specifically for warnings, errors, or automatic texture format conversions)
debug = ["bevy_log"]
[[example]]
name = "atlas"
path = "examples/atlas.rs"