2021-01-12 05:59:53 +01:00
|
|
|
#![recursion_limit = "2048"]
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
#[macro_use]
|
|
|
|
extern crate indexmap;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
mod prelude;
|
2021-06-19 02:06:44 +02:00
|
|
|
mod classified;
|
2021-01-12 05:59:53 +01:00
|
|
|
pub mod commands;
|
2021-06-19 02:06:44 +02:00
|
|
|
mod default_context;
|
2021-01-12 05:59:53 +01:00
|
|
|
pub mod utils;
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod examples;
|
|
|
|
|
2021-06-19 02:06:44 +02:00
|
|
|
pub use crate::default_context::create_default_context;
|
2021-01-12 05:59:53 +01:00
|
|
|
pub use nu_data::config;
|
|
|
|
pub use nu_data::dict::TaggedListBuilder;
|
|
|
|
pub use nu_data::primitive;
|
|
|
|
pub use nu_data::value;
|
2021-04-12 04:35:01 +02:00
|
|
|
pub use nu_stream::{ActionStream, InputStream, InterruptibleStream};
|
2021-01-12 05:59:53 +01:00
|
|
|
pub use nu_value_ext::ValueExt;
|
|
|
|
pub use num_traits::cast::ToPrimitive;
|
|
|
|
|
|
|
|
// TODO: Temporary redirect
|
|
|
|
pub use nu_protocol::{did_you_mean, TaggedDictBuilder};
|