mirror of
https://github.com/nushell/nushell.git
synced 2025-01-08 15:30:24 +01:00
25 lines
512 B
Rust
25 lines
512 B
Rust
|
#![recursion_limit = "2048"]
|
||
|
|
||
|
#[cfg(test)]
|
||
|
#[macro_use]
|
||
|
extern crate indexmap;
|
||
|
|
||
|
#[macro_use]
|
||
|
mod prelude;
|
||
|
pub mod commands;
|
||
|
pub mod utils;
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod examples;
|
||
|
|
||
|
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};
|