gshell 1.0.1

gshell is a shell for people who live in the terminal. It pairs familiar Unix behavior with a tighter core, fast interaction, and an interface built to stay out of the way.
Documentation
1
2
3
4
5
6
7
8
9
pub mod error;
pub mod state;
pub mod types;

pub use error::{ShellError, ShellResult};
pub use state::{
    AliasStore, FunctionStore, HistoryState, RuntimeServices, SharedShellState, ShellState,
};
pub use types::{CommandOutput, ExitCode, ShellAction};