Skip to main content

nexcore_fs/
lib.rs

1//! Zero-dependency filesystem utilities for the NexCore ecosystem.
2//!
3//! Replaces `dirs`, `walkdir`, `glob`, `tempfile`, and `shellexpand` crates
4//! with NexVigilant-owned implementations.
5
6#![forbid(unsafe_code)]
7#![warn(missing_docs)]
8#![cfg_attr(
9    not(test),
10    deny(clippy::unwrap_used, clippy::expect_used, clippy::panic)
11)]
12
13pub mod dirs;
14pub mod glob;
15pub mod walk;