1
0
mirror of https://github.com/4yn/slidershim.git synced 2024-12-01 00:27:15 +01:00
slidershim/src-tauri/Cargo.toml

63 lines
1.3 KiB
TOML
Raw Normal View History

2022-01-27 12:37:27 +01:00
[package]
2022-01-28 13:17:34 +01:00
name = "slidershim"
2022-02-09 07:00:36 +01:00
version = "0.1.4"
2022-01-28 13:17:34 +01:00
description = "slidershim"
authors = ["4yn"]
2022-01-27 12:37:27 +01:00
license = ""
repository = ""
2022-01-28 13:17:34 +01:00
default-run = "slidershim"
2022-01-27 12:37:27 +01:00
edition = "2018"
build = "src/build.rs"
[build-dependencies]
tauri-build = { version = "1.0.0-beta.4" }
[dependencies]
2022-02-09 07:00:36 +01:00
# logging
2022-02-04 16:45:36 +01:00
log = "0.4.14"
env_logger = "0.9.0"
2022-02-05 11:00:06 +01:00
simple-logging = "2.0.2"
2022-02-09 07:00:36 +01:00
# threads
parking_lot = "0.12.0"
2022-02-07 03:10:36 +01:00
atomic_float = "0.1.0"
spin_sleep = "1.0.0"
2022-02-04 16:45:36 +01:00
2022-02-09 07:00:36 +01:00
# async
2022-02-04 21:22:29 +01:00
futures = "0.3.19"
futures-util = "0.3.19"
async-trait = "0.1.52"
2022-02-04 21:45:34 +01:00
tokio = { version="1.16.1", features= ["rt-multi-thread","macros"] }
2022-02-04 21:22:29 +01:00
tokio-util = "0.6.9"
2022-02-09 07:00:36 +01:00
# UI
tauri = { version = "1.0.0-beta.8", features = ["shell-open", "system-tray"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
open = "2.0.2"
2022-02-04 16:45:36 +01:00
directories = "4.0.1"
2022-02-09 07:00:36 +01:00
image = "0.23.14"
# device and system
2022-01-28 13:17:34 +01:00
rusb = "0.9.0"
2022-02-02 08:14:56 +01:00
serialport = "4.0.1"
vigem-client = "0.1.1"
2022-01-28 16:07:27 +01:00
winapi = "0.3.9"
2022-02-05 11:00:06 +01:00
ipconfig = "0.3.0"
2022-02-04 16:45:36 +01:00
2022-02-09 07:00:36 +01:00
# webserver
2022-02-04 21:45:34 +01:00
hyper = { version="0.14.16", features= ["server", "http1", "http2", "tcp", "stream", "runtime"] }
2022-02-07 04:47:11 +01:00
phf = { version = "0.10.1", features = ["macros"] }
2022-02-04 16:45:36 +01:00
tungstenite = { version="0.16.0", default-features=false }
tokio-tungstenite = "0.16.1"
2022-01-27 12:37:27 +01:00
2022-02-09 07:00:36 +01:00
# webserver utils
base64 = "0.13.0"
palette = "0.6.0"
qrcode = { version="0.12.0", features= ["image"] }
2022-01-27 12:37:27 +01:00
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]