mirror of
https://github.com/nushell/nushell.git
synced 2025-05-29 22:29:06 +02: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.
18 lines
506 B
Rust
18 lines
506 B
Rust
#![doc = include_str!("../README.md")]
|
|
mod assert_path_eq;
|
|
mod components;
|
|
pub mod dots;
|
|
pub mod expansions;
|
|
pub mod form;
|
|
mod helpers;
|
|
mod path;
|
|
mod tilde;
|
|
mod trailing_slash;
|
|
|
|
pub use components::components;
|
|
pub use expansions::{canonicalize_with, expand_path_with, expand_to_real_path, locate_in_dirs};
|
|
pub use helpers::{cache_dir, config_dir, data_dir, get_canonicalized_path, home_dir};
|
|
pub use path::*;
|
|
pub use tilde::expand_tilde;
|
|
pub use trailing_slash::{has_trailing_slash, strip_trailing_slash};
|