-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (45 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
51 lines (45 loc) · 1.47 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
49
50
51
[package]
name = "bevy_streamdeck"
version = "0.8.0"
edition = "2024"
authors = ["François Mockers <francois.mockers@vleue.com>"]
description = "Elgato Stream Deck plugin for Bevy"
repository = "https://github.com/vleue/bevy_streamdeck"
homepage = "https://github.com/vleue/bevy_streamdeck"
documentation = "https://docs.rs/bevy_streamdeck"
keywords = ["bevy", "streamdeck"]
license = "MIT OR Apache-2.0"
readme = "README.md"
[features]
default = ["image_compatibility", "assets"]
image_compatibility = [
"dep:bevy_render",
"dep:bevy_image",
"bevy_image/png",
"images",
]
images = ["dep:image"]
assets = ["dep:bevy_asset"]
[dependencies]
bevy_ecs = { version = "0.18", default-features = false }
bevy_app = { version = "0.18", default-features = false }
bevy_input = { version = "0.18", default-features = false }
bevy_tasks = { version = "0.18", default-features = false }
bevy_color = { version = "0.18", default-features = false }
bevy_math = { version = "0.18" }
bevy_render = { version = "0.18", default-features = false, optional = true }
bevy_asset = { version = "0.18", default-features = false, optional = true }
bevy_image = { version = "0.18", default-features = false, optional = true }
streamdeck = { version = "0.9", default-features = false }
crossbeam-channel = "0.5"
image = { version = "0.25", optional = true }
log = "0.4"
[dev-dependencies]
rand = "0.9"
bevy = { version = "0.18" }
[[example]]
name = "image"
[[example]]
name = "animated"
[[example]]
name = "demo"