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

51 lines
1.2 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-06 20:38:48 +01:00
version = "0.1.2"
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"
# 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]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
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-06 19:01:34 +01:00
open = "2.0.2"
2022-02-05 11:00:06 +01:00
tauri = { version = "1.0.0-beta.8", features = ["shell-open", "system-tray"] }
2022-02-04 16:45:36 +01:00
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-04 16:45:36 +01:00
directories = "4.0.1"
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 13:17:34 +01:00
palette = "0.6.0"
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-04 21:45:34 +01:00
hyper = { version="0.14.16", features= ["server", "http1", "http2", "tcp", "stream", "runtime"] }
2022-02-06 19:01:34 +01:00
base64 = "0.13.0"
image = "0.23.14"
qrcode = { version="0.12.0", features= ["image"] }
2022-02-04 21:22:29 +01:00
path-clean = "0.1.0"
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
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]