feat: Add deep link plugin for mobile (#504)

Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
Co-authored-by: Lucas Nogueira <lucas@tauri.app>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
Fabian-Lars
2023-09-14 08:55:51 -03:00
committed by GitHub
co-authored by Lucas Nogueira Lucas Nogueira
parent 2409b01fe7
commit eccd6f977a
150 changed files with 12067 additions and 62 deletions
@@ -1,23 +1,20 @@
[workspace]
[package]
name = "app"
name = "websocket-example"
version = "0.1.0"
description = "A Tauri App"
edition = "2021"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri = { version = "2.0.0-alpha.12", features = [] }
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.19"
[build-dependencies]
tauri-build = { version = "2.0.0-alpha.4", features = [] }
tauri-build = { workspace = true }
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]
@@ -1,6 +1,6 @@
{
"build": {
"distDir": "../dist",
"distDir": "../build",
"devPath": "http://localhost:5173/",
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",