-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 860 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
[package]
authors = ["BButner"]
description = "Unofficial Stream Deck SDK for Rust"
name = "rusty-patio"
version = "1.0.2"
edition = "2021"
homepage = "https://github.com/bbutner/rusty-patio"
repository = "https://github.com/bbutner/rusty-patio"
readme = "README.md"
license = "GPL-3.0"
keywords = ["streamdeck", "sdk", "rust"]
categories = ["hardware-support", "api-bindings"]
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.69"
base64 = "0.21.0"
futures-util = "0.3.26"
mime_guess = "2.0.4"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
tokio = { version = "1.26.0", features = ["rt", "io-std", "sync", "fs"] }
tokio-tungstenite = "0.18.0"
tungstenite = "0.18.0"