mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-23 11:36:13 +02:00
eef088dde4
* chore(websocket): Convert ws example to vanilla-ts * fix gitignore
21 lines
478 B
TOML
21 lines
478 B
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri = { version = "1", features = [] }
|
|
tokio = { version = "1", features = ["net"] }
|
|
futures-util = "0.3"
|
|
tauri-plugin-websocket = { path = "../../../" }
|
|
tokio-tungstenite = "0.21"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1", features = [] }
|
|
|
|
[features]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|