mirror of
https://github.com/nushell/nushell.git
synced 2025-01-24 23:29:52 +01:00
30 lines
625 B
Rust
30 lines
625 B
Rust
|
#![recursion_limit = "2048"]
|
||
|
|
||
|
#[cfg(test)]
|
||
|
#[macro_use]
|
||
|
extern crate indexmap;
|
||
|
|
||
|
#[macro_use]
|
||
|
mod prelude;
|
||
|
pub mod commands;
|
||
|
mod futures;
|
||
|
pub mod maybe_print_errors;
|
||
|
pub mod script;
|
||
|
pub mod utils;
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod examples;
|
||
|
|
||
|
pub use crate::maybe_print_errors::maybe_print_errors;
|
||
|
|
||
|
pub use nu_data::config;
|
||
|
pub use nu_data::dict::TaggedListBuilder;
|
||
|
pub use nu_data::primitive;
|
||
|
pub use nu_data::value;
|
||
|
pub use nu_stream::{InputStream, InterruptibleStream, OutputStream};
|
||
|
pub use nu_value_ext::ValueExt;
|
||
|
pub use num_traits::cast::ToPrimitive;
|
||
|
|
||
|
// TODO: Temporary redirect
|
||
|
pub use nu_protocol::{did_you_mean, TaggedDictBuilder};
|