mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-04 13:48:01 +02:00
25 lines
606 B
TOML
25 lines
606 B
TOML
[package]
|
|
name = "websocket-example"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
# authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tauri = {workspace = true, features = [] }
|
|
tokio = { version = "1.11", features = ["net"] }
|
|
futures-util = "0.3"
|
|
tauri-plugin-websocket = { path = "../../../" }
|
|
tokio-tungstenite = "0.15"
|
|
|
|
[build-dependencies]
|
|
tauri-build = {workspace = true, features = [] }
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|