mirror of
https://github.com/nushell/nushell.git
synced 2025-01-29 17:49:37 +01:00
93e8f6c05e
We split off the evaluation engine part of nu-cli into its own crate. This helps improve build times for nu-cli by 17% in my tests. It also helps us see a bit better what's the core engine portion vs the part specific to the interactive CLI piece. There's more than can be done here, but I think it's a good start in the right direction.
10 lines
232 B
Rust
10 lines
232 B
Rust
#![allow(clippy::module_inception)]
|
|
|
|
#[cfg(feature = "rustyline-support")]
|
|
pub(crate) mod completer;
|
|
#[cfg(feature = "rustyline-support")]
|
|
pub(crate) mod helper;
|
|
|
|
#[cfg(feature = "rustyline-support")]
|
|
pub(crate) use helper::Helper;
|