mirror of
https://github.com/nushell/nushell.git
synced 2025-01-05 22:09:28 +01:00
a74d05061d
* Begin directory contrib docs and split commands * Fix unused import warning
28 lines
605 B
Rust
28 lines
605 B
Rust
#![recursion_limit = "2048"]
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate indexmap;
|
|
|
|
#[macro_use]
|
|
mod prelude;
|
|
mod classified;
|
|
pub mod commands;
|
|
mod default_context;
|
|
pub mod utils;
|
|
|
|
#[cfg(test)]
|
|
mod examples;
|
|
|
|
pub use crate::default_context::create_default_context;
|
|
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::{ActionStream, InputStream, InterruptibleStream};
|
|
pub use nu_value_ext::ValueExt;
|
|
pub use num_traits::cast::ToPrimitive;
|
|
|
|
// TODO: Temporary redirect
|
|
pub use nu_protocol::{did_you_mean, TaggedDictBuilder};
|