forked from ryankurte/rust-streamdeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 788 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
[package]
name = "streamdeck"
description = "Elgato Stream Deck driver and command line interface"
repository = "https://github.com/ryankurte/rust-streamdeck"
authors = ["ryan <ryan@kurte.nz>"]
version = "0.9.0"
readme = "README.md"
license = "MPL-2.0"
edition = "2018"
[features]
util = [ "structopt", "simplelog", "humantime" ]
default = [ "util" ]
[dependencies]
hidapi = "2.4"
log = "0.4.8"
image = "0.25.2"
imageproc = "0.24.0"
thiserror = "1.0.30"
ab_glyph = "0.2.25"
structopt = { version = "0.3.5", optional = true }
simplelog = { version = "0.12.0", optional = true }
humantime = { version = "2.1.0", optional = true }
serde = { version = "1.0.104", optional = true, features = ["derive"] }
[[bin]]
path = "src/main.rs"
name = "streamdeck-cli"
required-features = [ "util" ]