nushell/crates/nu-command/src/lib.rs
Fernando Herrera 76019f434e
Dataframe feature (#361)
* custom value trait

* functions for custom value trait

* custom trait behind flag

* open dataframe command

* command to-df for basic types

* follow path for dataframe

* dataframe operations

* dataframe not default feature

* custom as default feature

* corrected examples in command
2021-11-23 08:14:40 +00:00

36 lines
614 B
Rust

mod conversions;
mod core_commands;
mod date;
mod default_context;
mod env;
mod example_test;
mod experimental;
mod filesystem;
mod filters;
mod formats;
mod math;
mod strings;
mod system;
mod viewers;
#[cfg(feature = "dataframe")]
mod dataframe;
pub use conversions::*;
pub use core_commands::*;
pub use date::*;
pub use default_context::*;
pub use env::*;
pub use example_test::test_examples;
pub use experimental::*;
pub use filesystem::*;
pub use filters::*;
pub use formats::*;
pub use math::*;
pub use strings::*;
pub use system::*;
pub use viewers::*;
#[cfg(feature = "dataframe")]
pub use dataframe::*;