revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
//! Path manipulation utilities
//!
//! Provides utilities for displaying and manipulating file paths
//! in user-friendly formats.
//!
//! # Example
//!
//! ```rust,ignore
//! use revue::utils::path::{shorten_path, home_relative, abbreviate_path};
//!
//! // Replace home directory with ~
//! let path = home_relative("/Users/john/Documents/file.txt");
//! assert_eq!(path, "~/Documents/file.txt");
//!
//! // Shorten to fit width
//! let short = shorten_path("/very/long/path/to/file.txt", 20);
//! assert_eq!(short, ".../path/to/file.txt");
//!
//! // Abbreviate middle directories
//! let abbr = abbreviate_path("/Users/john/Documents/Projects/rust/src/main.rs");
//! assert_eq!(abbr, "/U/j/D/P/rust/src/main.rs");
//! ```

mod component;
mod display;
mod error;
mod format;
mod home;
mod util;
mod validate;

#[cfg(test)]
mod tests;

// Re-export all public items for backward compatibility
pub use component::{extension, filename, is_hidden, parent, stem};
pub use display::PathDisplay;
pub use error::PathError;
pub use format::{abbreviate_path, abbreviate_path_keep, relative_to, shorten_path};
pub use home::{expand_home, home_dir, home_relative};
pub use util::{common_prefix, join_paths, normalize_separators};
pub use validate::{
    validate_characters, validate_no_traversal, validate_relative_only, validate_within_base,
};