From e0281cc6c45b21be03e717a10f950cec5b3aeef8 Mon Sep 17 00:00:00 2001 From: shellrow Date: Sun, 1 Mar 2026 20:29:57 +0900 Subject: [PATCH] chore: specify version for workspace dependency --- Cargo.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 809c594..01c3ead 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,10 +18,10 @@ edition = "2024" authors = ["shellrow "] [workspace.dependencies] -websock-proto = { path = "websock-proto" } -websock-tungstenite = { path = "websock-tungstenite" } -websock-wasm = { path = "websock-wasm" } -websock-mux-proto = { path = "websock-mux-proto" } -websock-tungstenite-mux = { path = "websock-tungstenite-mux" } -websock-wasm-mux = { path = "websock-wasm-mux" } +websock-proto = { path = "websock-proto", version = "0.4.0" } +websock-tungstenite = { path = "websock-tungstenite", version = "0.4.0" } +websock-wasm = { path = "websock-wasm", version = "0.4.0" } +websock-mux-proto = { path = "websock-mux-proto", version = "0.4.0" } +websock-tungstenite-mux = { path = "websock-tungstenite-mux", version = "0.4.0" } +websock-wasm-mux = { path = "websock-wasm-mux", version = "0.4.0" } bytes = "1"