mirror of
https://github.com/nushell/nushell
synced 2025-01-15 06:34:15 +00:00
c5aa15c7f6
# 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.
7 lines
141 B
Rust
7 lines
141 B
Rust
#![doc = include_str!("../README.md")]
|
|
mod example_test;
|
|
pub mod extra;
|
|
pub use extra::*;
|
|
|
|
#[cfg(test)]
|
|
pub use example_test::test_examples;
|