-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
65 lines (56 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "seldom_pixel"
version = "0.8.0"
edition = "2021"
categories = ["game-development"]
description = "Bevy plugin for limited color palette pixel art games"
exclude = ["assets/"]
keywords = ["gamedev", "bevy", "graphics", "gui", "2d"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/Seldom-SE/seldom_pixel"
[features]
line = ["dep:line_drawing"]
nav = ["dep:seldom_map_nav"]
particle = ["dep:bevy_turborand"]
state = ["dep:seldom_state"]
[dependencies]
anyhow = "1.0"
event-listener = "5.3"
serde = "1.0"
line_drawing = { version = "1.0", optional = true }
seldom_singleton = "0.3.0"
bevy_turborand = { version = "0.10.0", optional = true }
seldom_map_nav = { version = "0.8.0", optional = true }
seldom_pixel_macros = { version = "0.2.0-dev", path = "macros" }
seldom_state = { version = "0.12.0", optional = true }
[dependencies.bevy_internal]
version = "0.15.0"
default-features = false
features = ["bevy_image"]
[dependencies.bevy]
version = "0.15.0"
default-features = false
features = [
"bevy_asset",
"bevy_window",
"bevy_render",
"bevy_core_pipeline",
"bevy_sprite",
]
[dev-dependencies]
bevy = "0.15.0"
leafwing-input-manager = "0.16.0"
rand = "0.8.5"
seldom_state = { version = "0.12.0", features = ["leafwing_input"] }
[[example]]
name = "line"
required-features = ["line"]
[[example]]
name = "particles"
required-features = ["particle"]
[[example]]
name = "state"
required-features = ["state"]
[package.metadata.docs.rs]
all-features = true