-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 790 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 790 Bytes
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 = "elgato-streamdeck"
description = "HidApi driver for Elgato Stream Deck devices"
authors = ["TheJebForge", "nekename"]
version = "0.13.0"
edition = "2024"
repository = "https://github.com/OpenActionAPI/rust-elgato-streamdeck"
license = "MPL-2.0"
[dependencies]
hidapi = "2.6"
image = { version = "0.25", default-features = false, features = [
"bmp",
"jpeg",
] }
tokio = { version = "1", optional = true }
strum = { version = "0.27", features = ["derive"], optional = true }
[features]
async = [
"tokio",
"tokio/sync",
"tokio/rt-multi-thread",
"tokio/time"
]
strum = ["dep:strum"]
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]