nu_plugin_polars 0.112.0

Nushell dataframe plugin commands based on polars.
1
2
3
4
5
6
7
8
9
10
mod math;

use crate::PolarsPlugin;
use nu_plugin::PluginCommand;

use math::ExprMath;

pub(crate) fn computation_commands() -> Vec<Box<dyn PluginCommand<Plugin = PolarsPlugin>>> {
    vec![Box::new(ExprMath)]
}