2022-02-12 15:14:50 +01:00
|
|
|
[package]
|
|
|
|
name = "slider_io"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# logging
|
|
|
|
log = "0.4.14"
|
|
|
|
env_logger = "0.9.0"
|
|
|
|
|
|
|
|
# threads
|
|
|
|
parking_lot = "0.12.0"
|
|
|
|
atomic_float = "0.1.0"
|
|
|
|
|
|
|
|
# async
|
|
|
|
futures = "0.3.19"
|
|
|
|
futures-util = "0.3.19"
|
|
|
|
async-trait = "0.1.52"
|
|
|
|
tokio = { version="1.16.1", features= ["rt-multi-thread","macros"] }
|
|
|
|
tokio-util = "0.6.9"
|
|
|
|
|
|
|
|
# UI
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
directories = "4.0.1"
|
|
|
|
image = "0.23.14"
|
|
|
|
|
|
|
|
# device and system
|
|
|
|
rusb = "0.9.0"
|
|
|
|
serialport = "4.0.1"
|
2022-02-21 13:58:38 +01:00
|
|
|
wwserial = {path = "../src-wwserial" }
|
2022-04-02 21:11:37 +02:00
|
|
|
vigem-client = { version = "0.1.2", features = ["unstable"] }
|
2022-02-12 15:14:50 +01:00
|
|
|
winapi = "0.3.9"
|
2022-07-24 15:11:48 +02:00
|
|
|
interception = {path = "../src-interception" }
|
2022-02-12 15:14:50 +01:00
|
|
|
ipconfig = "0.3.0"
|
|
|
|
|
|
|
|
# webserver
|
|
|
|
hyper = { version="0.14.16", features= ["server", "http1", "http2", "tcp", "stream", "runtime"] }
|
|
|
|
phf = { version = "0.10.1", features = ["macros"] }
|
|
|
|
tungstenite = { version="0.16.0", default-features=false }
|
|
|
|
tokio-tungstenite = "0.16.1"
|
|
|
|
|
|
|
|
# webserver utils
|
|
|
|
base64 = "0.13.0"
|
|
|
|
palette = "0.6.0"
|
|
|
|
qrcode = { version="0.12.0", features= ["image"] }
|