-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (34 loc) · 1022 Bytes
/
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
[package]
name = "bevy_streamdeck"
version = "0.4.0"
edition = "2021"
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 = ["color_compatibility", "image_compatibility", "assets"]
color_compatibility = ["bevy/bevy_color"]
image_compatibility = ["bevy/bevy_render", "bevy/png", "images"]
images = ["image"]
assets = ["bevy/bevy_asset"]
[dependencies.bevy]
version = "0.14.0"
default-features = false
features = ["multi_threaded"]
[dependencies]
streamdeck = { version = "0.9", default-features = false }
crossbeam-channel = "0.5"
image = { version = "0.25", optional = true }
[dev-dependencies]
rand = "0.8"
[[example]]
name = "image"
[[example]]
name = "animated"
[[example]]
name = "demo"