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