file_kitty/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! A toolkit for file operations with a focus on encoding detection and conversion
//! 
//! # Features
//! 
//! - Automatic encoding detection
//! - Batch conversion of non-UTF-8 files to UTF-8
//! - Smart binary file detection
//! - Interactive mode for bulk operations
//! 
//! # Example
//! 
//! ```no_run
//! use file_kitty::encoding::scan_directory;
//! 
//! #[tokio::main]
//! async fn main() -> anyhow::Result<()> {
//!     scan_directory("./my_project", false, false).await?;
//!     Ok(())
//! }
//! ```

pub mod encoding;