mirror of
https://github.com/tauri-apps/tauri-plugin-websocket.git
synced 2026-01-31 00:35:19 +01:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <fabianlars@fabianlars.de> Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/12632737471 Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
21 lines
451 B
TOML
21 lines
451 B
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true }
|
|
tokio = { version = "1", features = ["net"] }
|
|
futures-util = "0.3"
|
|
tauri-plugin-websocket = { path = "../../../" }
|
|
tokio-tungstenite = "0.26"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { workspace = true }
|
|
|
|
[features]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|