mirror of
https://github.com/nushell/nushell.git
synced 2025-05-30 14:50:02 +02:00
* Impl one func to run scripts * Add exit_on_err * Remove run_standalone * Make the compiler happy :)
39 lines
921 B
Rust
39 lines
921 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::Options;
|
|
pub use crate::cli::{parse_and_eval, register_plugins, run_script_file};
|
|
|
|
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::{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};
|