parent
bc6dfe1586
commit
0784df88e8
@ -1,23 +1,20 @@
|
|||||||
[workspace]
|
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "app"
|
name = "websocket-example"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "A Tauri App"
|
description = "A Tauri App"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { workspace = true }
|
||||||
serde_json = "1"
|
serde_json = { workspace = true }
|
||||||
tauri = { version = "2.0.0-alpha.8", features = [] }
|
tauri = { workspace = true }
|
||||||
tokio = { version = "1", features = ["net"] }
|
tokio = { version = "1", features = ["net"] }
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
tauri-plugin-websocket = { path = "../../../" }
|
tauri-plugin-websocket = { path = "../../../" }
|
||||||
tokio-tungstenite = "0.19"
|
tokio-tungstenite = "0.19"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tauri-build = { version = "2.0.0-alpha.4", features = [] }
|
tauri-build = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [ "custom-protocol" ]
|
|
||||||
custom-protocol = [ "tauri/custom-protocol" ]
|
custom-protocol = [ "tauri/custom-protocol" ]
|
||||||
|
@ -0,0 +1,2 @@
|
|||||||
|
export const prerender = true
|
||||||
|
export const ssr = false
|
Loading…
Reference in new issue