mirror of
https://github.com/nushell/nushell.git
synced 2025-01-13 01:38:20 +01:00
5f550a355b
* Split OutputStream into ActionStream/OutputStream * Fmt * Missed update * Cleanup helper names * Fmt
39 lines
933 B
Rust
39 lines
933 B
Rust
#![recursion_limit = "2048"]
|
|
|
|
#[macro_use]
|
|
mod prelude;
|
|
|
|
#[cfg(test)]
|
|
extern crate quickcheck;
|
|
#[cfg(test)]
|
|
#[macro_use(quickcheck)]
|
|
extern crate quickcheck_macros;
|
|
|
|
mod cli;
|
|
#[cfg(feature = "rustyline-support")]
|
|
mod completion;
|
|
mod format;
|
|
#[cfg(feature = "rustyline-support")]
|
|
mod keybinding;
|
|
mod line_editor;
|
|
mod shell;
|
|
pub mod types;
|
|
|
|
#[cfg(feature = "rustyline-support")]
|
|
pub use crate::cli::cli;
|
|
|
|
pub use crate::cli::{parse_and_eval, register_plugins, run_script_file};
|
|
pub use crate::cli::{NuScript, Options};
|
|
|
|
pub use nu_command::commands::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};
|