From 1d18a4af5cbd27889dd434b0988ed6745c14b169 Mon Sep 17 00:00:00 2001 From: Markus Scully Date: Fri, 20 Jun 2025 12:52:49 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20downgrade=20nushell=20dependenci?= =?UTF-8?q?es=20to=200.104.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The latest version of nushell seems to have broken the way this plugin is implemented. Downgrading solves it for now --- Cargo.toml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 88d0946..62721b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ version = "0.3.2" edition = "2021" [dependencies] -nu-plugin = "0.105.1" -nu-protocol = "0.105.1" +nu-plugin = "0.104.1" +nu-protocol = "0.104.1" tungstenite = { version = "0.24.0", features = ["native-tls"] } url = "2.5.3" diff --git a/README.md b/README.md index 5889b84..e54f660 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # nu_plugin_ws [![Crates.io Version](https://img.shields.io/crates/v/nu_plugin_ws?color=blue)](https://crates.io/crates/nu_plugin_ws) -[![Nushell](https://img.shields.io/badge/Nushell-v0.105.1-blue)](https://nushell.sh) +[![Nushell](https://img.shields.io/badge/Nushell-v0.104.1-blue)](https://nushell.sh) A plugin for [Nushell](https://nushell.sh), a cross-platform shell and scripting language. This plugin adds support for streaming from a websocket.