Files
tauri-plugins-workspace/plugins/websocket/examples/tauri-app/src-tauri/Cargo.toml
T
Jarrodsz 382fc3a7bf chore(store): add AppSettings example (#573)
* basic example foundation

* add examples to workspace

* cleanup and load fix

* fmt

* reset lockfile

---------

Co-authored-by: FabianLars <fabianlars@fabianlars.de>
2024-02-26 18:34:54 +01:00

21 lines
427 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.21"
[build-dependencies]
tauri-build.workspace = true
[features]
custom-protocol = [ "tauri/custom-protocol" ]