From 52b3115049f8c00b28199988616eeae188507e96 Mon Sep 17 00:00:00 2001 From: banst Date: Thu, 16 Jan 2025 18:51:45 +0100 Subject: [PATCH] feat: add nu_plugin_format_pcap --- README.md | 1 + config.yaml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 0d240cb..56150c6 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ You can find some examples about how to create and use plugins in the [Nushell P - [nu_plugin_endecode](https://github.com/KAAtheWiseGit/nugins/tree/trunk/endecode): A plugin with various encoding schemes, from Crockford's base-32 to HTML entity escaping. - [nu_plugin_file](https://github.com/fdncred/nu_plugin_file): A nushell plugin that will inspect a file and return information based on its magic number. - [nu_plugin_formats](https://crates.io/crates/nu_plugin_formats): A nushell plugin for parsing eml, ics, ini, vcf files. +- [nu_plugin_format_pcap](https://github.com/b4nst/nu_plugin_format_pcap): A nushell plugin for parsing pcap (packet data) files. - [nu_plugin_from_beancount](https://github.com/jcornaz/nu_plugin_from_beancount): A nushell extension to load a beancount file into nu structured data. - [nu_plugin_from_bencode](https://github.com/bluk/nu_plugin_from_bencode): A converter plugin from the bencode format for Nushell. - [nu_plugin_from_hdf5](https://github.com/Berrysoft/nu_plugin_from_hdf5): A plugin to parse HDF5 files into nushell record. diff --git a/config.yaml b/config.yaml index 360d1f5..5dee9f6 100644 --- a/config.yaml +++ b/config.yaml @@ -116,6 +116,11 @@ plugins: repository: url: https://github.com/nushell/nushell/tree/main/crates/nu_plugin_formats branch: main + - name: nu_plugin_format_pcap + language: rust + repository: + url: https://github.com/b4nst/nu_plugin_format_pcap + branch: main - name: nu_plugin_dcm language: rust repository: