file-kitty 0.2.0

A versatile file manipulation toolkit with async support
Documentation
//! 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;