mirror of
https://github.com/nushell/nushell
synced 2024-12-29 06:23:11 +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.
68 lines
1.2 KiB
Rust
68 lines
1.2 KiB
Rust
#![doc = include_str!("../README.md")]
|
|
mod bytes;
|
|
mod charting;
|
|
mod conversions;
|
|
mod date;
|
|
mod debug;
|
|
mod default_context;
|
|
mod env;
|
|
mod example_test;
|
|
mod experimental;
|
|
mod filesystem;
|
|
mod filters;
|
|
mod formats;
|
|
mod generators;
|
|
mod hash;
|
|
mod help;
|
|
mod math;
|
|
mod misc;
|
|
mod network;
|
|
mod path;
|
|
mod platform;
|
|
mod progress_bar;
|
|
mod random;
|
|
mod removed;
|
|
mod shells;
|
|
mod sort_utils;
|
|
#[cfg(feature = "sqlite")]
|
|
mod stor;
|
|
mod strings;
|
|
mod system;
|
|
mod viewers;
|
|
|
|
pub use bytes::*;
|
|
pub use charting::*;
|
|
pub use conversions::*;
|
|
pub use date::*;
|
|
pub use debug::*;
|
|
pub use default_context::*;
|
|
pub use env::*;
|
|
#[cfg(test)]
|
|
pub use example_test::{test_examples, test_examples_with_commands};
|
|
pub use experimental::*;
|
|
pub use filesystem::*;
|
|
pub use filters::*;
|
|
pub use formats::*;
|
|
pub use generators::*;
|
|
pub use hash::*;
|
|
pub use help::*;
|
|
pub use math::*;
|
|
pub use misc::*;
|
|
pub use network::*;
|
|
pub use path::*;
|
|
pub use platform::*;
|
|
pub use random::*;
|
|
pub use removed::*;
|
|
pub use shells::*;
|
|
pub use sort_utils::*;
|
|
#[cfg(feature = "sqlite")]
|
|
pub use stor::*;
|
|
pub use strings::*;
|
|
pub use system::*;
|
|
pub use viewers::*;
|
|
|
|
#[cfg(feature = "sqlite")]
|
|
mod database;
|
|
|
|
#[cfg(feature = "sqlite")]
|
|
pub use database::*;
|