nu_plugin_polars 0.113.0

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

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

pub use to_decimal::ToDecimal;
pub use to_integer::ToInteger;

pub(crate) fn integer_commands() -> Vec<Box<dyn PluginCommand<Plugin = PolarsPlugin>>> {
    vec![Box::new(ToDecimal), Box::new(ToInteger)]
}