Files
termscp/src/utils.rs
T
Christian Visintin bc4b096077 fix: stabilize core error handling
Remove production panic and unwrap paths from core modules.

Propagate bookmark encryption failures, harden file watcher and temp mapped file handling, and clean up dead code in shared utilities.
2026-04-19 01:54:46 +05:30

19 lines
277 B
Rust

//! ## Utils
//!
//! `utils` is the module which provides utilities of different kind
// modules
pub mod crypto;
pub mod file;
pub mod fmt;
pub mod parser;
pub mod path;
pub mod random;
pub mod ssh;
pub mod string;
pub mod tty;
pub mod ui;
#[cfg(test)]
pub mod test_helpers;