findit-rs 0.2.8

A fast, lightweight command-line filesystem search tool
Documentation
1
2
3
4
5
6
7
8
#![allow(dead_code)]

use std::path::PathBuf;
use std::sync::{Mutex, OnceLock};

pub static IGNORE_FILE_PATH: OnceLock<Mutex<PathBuf>> = OnceLock::new();

pub mod update;