From c7ac2dfb949db67397931878aeda034e3921c514 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Mon, 18 Mar 2024 20:40:34 +0000 Subject: [PATCH] chore: Change workspace inheritance syntax for better covector support (#1092) Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/8333326213 Co-authored-by: FabianLars --- Cargo.toml | 18 +++++++++--------- examples/tauri-app/src-tauri/Cargo.toml | 8 ++++---- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 249f3c9..6ded04a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,20 +1,20 @@ [package] name = "tauri-plugin-websocket" version = "0.0.0" -authors.workspace = true -license.workspace = true -edition.workspace = true -rust-version.workspace = true +authors = { workspace = true } +license = { workspace = true } +edition = { workspace = true } +rust-version = { workspace = true } exclude = ["/examples"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true -log.workspace = true -thiserror.workspace = true +serde = { workspace = true } +serde_json = { workspace = true } +tauri = { workspace = true } +log = { workspace = true } +thiserror = { workspace = true } http = "1" rand = "0.8" futures-util = "0.3" diff --git a/examples/tauri-app/src-tauri/Cargo.toml b/examples/tauri-app/src-tauri/Cargo.toml index ed1ab7d..ce5c6d2 100644 --- a/examples/tauri-app/src-tauri/Cargo.toml +++ b/examples/tauri-app/src-tauri/Cargo.toml @@ -5,16 +5,16 @@ description = "A Tauri App" edition = "2021" [dependencies] -serde.workspace = true -serde_json.workspace = true -tauri.workspace = true +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 +tauri-build = { workspace = true } [features] custom-protocol = [ "tauri/custom-protocol" ]