-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (41 loc) · 1.02 KB
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
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "bevy_mod_spritesheet"
repository = "https://github.com/danielfeather/bevy_mod_spritesheet"
categories = [
"game-development",
]
keywords = ["bevy", "spritesheet", "texture", "atlas", "gamedev"]
description = "Create TextureAtlasLayouts from common sprite sheet formats"
license = "MIT"
version = "0.3.0"
edition = "2021"
[dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_asset",
"bevy_sprite",
] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", optional = true }
thiserror = "1"
[features]
default = ["json-array", "json-hash"]
json-array = ["serde_json"]
json-hash = ["serde_json"]
[[example]]
name = "json_array"
[[example]]
name = "json_hash"
[[example]]
name = "bevy_web_asset"
[[example]]
name = "without_texture_loading"
[dev-dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_sprite",
"bevy_asset",
"png",
"x11",
"webgl2",
]}
bevy-inspector-egui = "0.25"
bevy_web_asset = "0.9"