Update rustyline to latest (#2565)

* Update rustyline to latest

* Go ahead and use rustyline for testing
This commit is contained in:
Jonathan Turner
2020-09-17 18:02:30 +12:00
committed by GitHub
parent 1dc8f3300e
commit 8453261211
13 changed files with 372 additions and 313 deletions

View File

@@ -1,12 +1,16 @@
#![allow(clippy::module_inception)]
#[cfg(feature = "rustyline-support")]
pub(crate) mod completer;
pub(crate) mod filesystem_shell;
pub(crate) mod help_shell;
#[cfg(feature = "rustyline-support")]
pub(crate) mod helper;
pub(crate) mod painter;
pub(crate) mod palette;
pub(crate) mod shell;
pub(crate) mod shell_manager;
pub(crate) mod value_shell;
#[cfg(feature = "rustyline-support")]
pub(crate) use helper::Helper;