mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-08 14:03:53 +02:00
24 lines
600 B
TOML
24 lines
600 B
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
repository = ""
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
tauri = { version = "1.0.0-beta.5", features = ["api-all"] }
|
|
tokio = { version = "1.11", features = ["net"] }
|
|
futures-util = "0.3"
|
|
tauri-plugin-websocket = { path = "../../../" }
|
|
tokio-tungstenite = "0.15"
|
|
|
|
[build-dependencies]
|
|
tauri-build = "1.0.0-beta.3"
|
|
|
|
[features]
|
|
default = [ "custom-protocol" ]
|
|
custom-protocol = [ "tauri/custom-protocol" ]
|