Create ws plugin

Signed-off-by: Alex Kattathra Johnson <alex.kattathra.johnson@gmail.com>
This commit is contained in:
Alex Kattathra Johnson 2024-12-05 21:02:54 -06:00
commit ee23be4aac
No known key found for this signature in database
GPG key ID: 64BCC76905798553
8 changed files with 2843 additions and 0 deletions

15
Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
authors = ["Alex Johnson <alex.kattathra.johnson@gmail.com>"]
homepage = "https://github.com/alex-kattathra-johnson/nu_plugin_ws"
readme = "README.md"
license = "MIT"
name = "nu_plugin_ws"
description = "A Nushell plugin for easily streaming output from websocket endpoints"
version = "0.1.0"
edition = "2021"
[dependencies]
nu-plugin = "0.99.1"
nu-protocol = "0.99.1"
tungstenite = { version = "0.24.0", features = ["native-tls"] }
url = "2.5.3"