mirror of
https://github.com/nushell/nushell.git
synced 2025-05-29 11:01:19 +00:00
* Expand n dots early where tilde was also expanded. * Remove normalize, not needed. New function absolutize, doesn't follow links neither checks existence. Renamed canonicalize_existing to canonicalize, works as expected. * Remove normalize usages, change canonicalize. * Treat strings as paths
13 lines
301 B
Rust
13 lines
301 B
Rust
mod files;
|
|
mod lite_parse;
|
|
mod parse;
|
|
mod path;
|
|
mod shapes;
|
|
mod signature;
|
|
|
|
pub use crate::files::Files;
|
|
pub use crate::lite_parse::{lite_parse, LitePipeline};
|
|
pub use crate::parse::{classify_pipeline, garbage};
|
|
pub use crate::shapes::shapes;
|
|
pub use crate::signature::{Signature, SignatureRegistry};
|