mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-21 11:26:15 +02:00
d4a8ce962b
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
21 lines
501 B
TOML
21 lines
501 B
TOML
[package]
|
|
name = "websocket-example"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true, features = ["wry", "common-controls-v6", "x11"] }
|
|
tokio = { version = "1", features = ["net"] }
|
|
futures-util = "0.3"
|
|
tauri-plugin-websocket = { path = "../../../" }
|
|
tokio-tungstenite = "0.28"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { workspace = true }
|
|
|
|
[features]
|
|
prod = ["tauri/custom-protocol"]
|