guth 0.2.30

Native Rust desktop file manager for fast, bounded local file workflows.
Documentation
//! Guth is a native Rust file manager for bounded local desktop workflows.
//!
//! The library exposes the filesystem model, operation engine, thumbnail
//! pipeline, plugin registry, theme helpers, and the [`app::GuthApp`] egui
//! application. Most users should install and run the `guth` binary rather
//! than embed these modules directly.
//!
//! The desktop application includes bounded asynchronous search, file
//! operations, thumbnails, and adaptive inline media and document previews.

#![forbid(unsafe_code)]

pub mod app;
pub mod archives;
pub mod drag_out;
pub mod file_clipboard;
pub mod fs_model;
pub mod open_with;
pub mod ops;
pub mod plugins;
pub mod theme;
pub mod thumbnails;
pub mod workspace;