ecd 0.2.0

Fast CLI to detect text file encodings (UTF-8, GBK, Shift_JIS, and 35+ more)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ecd — fast CLI for detecting text file character encodings.
//!
//! See the [repository](https://github.com/DereckLee/ecd) for usage and supported encodings.

pub mod cli;
pub mod color;
pub mod detect;
pub mod encodings;
pub mod error;
pub mod output;
pub mod walk;

pub use cli::Cli;