1
0
mirror of https://github.com/4yn/slidershim.git synced 2025-02-02 04:27:58 +01:00
slidershim/src-tauri/Cargo.toml

46 lines
1.1 KiB
TOML
Raw Normal View History

2022-01-27 19:37:27 +08:00
[package]
2022-01-28 20:17:34 +08:00
name = "slidershim"
2022-01-27 19:37:27 +08:00
version = "0.1.0"
2022-01-28 20:17:34 +08:00
description = "slidershim"
authors = ["4yn"]
2022-01-27 19:37:27 +08:00
license = ""
repository = ""
2022-01-28 20:17:34 +08:00
default-run = "slidershim"
2022-01-27 19:37:27 +08:00
edition = "2018"
build = "src/build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.0.0-beta.4" }
[dependencies]
2022-02-04 23:45:36 +08:00
2022-01-27 19:37:27 +08:00
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2022-02-04 23:45:36 +08:00
log = "0.4.14"
env_logger = "0.9.0"
2022-01-27 21:13:34 +08:00
tauri = { version = "1.0.0-beta.8", features = ["api-all", "system-tray"] }
2022-02-04 23:45:36 +08:00
2022-02-05 04:22:29 +08:00
futures = "0.3.19"
futures-util = "0.3.19"
async-trait = "0.1.52"
2022-02-05 04:45:34 +08:00
tokio = { version="1.16.1", features= ["rt-multi-thread","macros"] }
2022-02-05 04:22:29 +08:00
tokio-util = "0.6.9"
2022-02-04 23:45:36 +08:00
directories = "4.0.1"
2022-01-28 20:17:34 +08:00
rusb = "0.9.0"
2022-02-02 15:14:56 +08:00
serialport = "4.0.1"
vigem-client = "0.1.1"
2022-01-28 20:17:34 +08:00
palette = "0.6.0"
2022-01-28 23:07:27 +08:00
winapi = "0.3.9"
2022-02-04 23:45:36 +08:00
2022-02-05 04:45:34 +08:00
hyper = { version="0.14.16", features= ["server", "http1", "http2", "tcp", "stream", "runtime"] }
2022-02-05 04:22:29 +08:00
path-clean = "0.1.0"
2022-02-04 23:45:36 +08:00
tungstenite = { version="0.16.0", default-features=false }
tokio-tungstenite = "0.16.1"
2022-01-27 19:37:27 +08:00
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]