guth 0.2.2

Native Rust desktop file manager for fast, bounded local file workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 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 fs_model;
pub mod ops;
pub mod plugins;
pub mod theme;
pub mod thumbnails;