mirror of
https://github.com/nushell/nushell.git
synced 2025-02-16 18:41:44 +01:00
# Description Add `README.md` files to each crate in our workspace (-plugins) and also include it in the `lib.rs` documentation for <docs.rs> (if there is no existing `lib.rs` crate documentation) In all new README I added the defensive comment that the crates are not considered stable for public consumption. If necessary we can adjust this if we deem a crate useful for plugin authors.
28 lines
655 B
Rust
28 lines
655 B
Rust
#![doc = include_str!("../README.md")]
|
|
mod call_ext;
|
|
mod closure_eval;
|
|
pub mod column;
|
|
pub mod command_prelude;
|
|
mod compile;
|
|
pub mod documentation;
|
|
pub mod env;
|
|
mod eval;
|
|
mod eval_helpers;
|
|
mod eval_ir;
|
|
mod glob_from;
|
|
pub mod scope;
|
|
|
|
pub use call_ext::CallExt;
|
|
pub use closure_eval::*;
|
|
pub use column::get_columns;
|
|
pub use compile::compile;
|
|
pub use documentation::get_full_help;
|
|
pub use env::*;
|
|
pub use eval::{
|
|
eval_block, eval_block_with_early_return, eval_call, eval_expression,
|
|
eval_expression_with_input, eval_subexpression, eval_variable, redirect_env,
|
|
};
|
|
pub use eval_helpers::*;
|
|
pub use eval_ir::eval_ir_block;
|
|
pub use glob_from::glob_from;
|