nu_plugin_x509 0.1.6

A nushell plugin for working with x509 certificates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod gen;
mod parse;
use nu_plugin::Plugin;

pub struct X509Plugin;

impl Plugin for X509Plugin {
    fn version(&self) -> String {
        env!("CARGO_PKG_VERSION").into()
    }

    fn commands(&self) -> Vec<Box<dyn nu_plugin::PluginCommand<Plugin = Self>>> {
        vec![Box::new(parse::ParseCommand), Box::new(gen::GenCommand)]
    }
}