findit-rs 0.2.9

A fast, lightweight command-line filesystem search tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # findit-rs
//!
//! A fast and lightweight file, directory, and word search tool.
//!
//! Supports both a CLI and a GUI interface via the `--g` or `gui` flag.

pub mod cli;
pub mod config;
pub mod findit;
pub mod gui;
pub mod utils;