6 releases

Uses old Rust 2015

0.2.4 Sep 15, 2017
0.2.3 Sep 5, 2017
0.1.0 Aug 24, 2017

#1074 in Encoding

Download history 5969/week @ 2024-08-16 13950/week @ 2024-08-23 7586/week @ 2024-08-30 12805/week @ 2024-09-06 3554/week @ 2024-09-13 12172/week @ 2024-09-20 18037/week @ 2024-09-27 4582/week @ 2024-10-04 12464/week @ 2024-10-11 10897/week @ 2024-10-18 10537/week @ 2024-10-25 6085/week @ 2024-11-01 16818/week @ 2024-11-08 37919/week @ 2024-11-15 9092/week @ 2024-11-22 16700/week @ 2024-11-29

81,060 downloads per month
Used in 24 crates (17 directly)

LGPL-3.0

2MB
12K SLoC

Rust-Chardet

Rust-Charset on Travis CI

Rust version of chardet.

Usage

Put this in your Cargo.toml:

[dependencies]
chardet = "0.2"

Then put this in your crate root:

extern crate chardet;

Using with encoding:

extern crate chardet;
extern crate encoding;
use chardet;
use std::fs::OpenOptions;
use std::io::prelude::*;
use encoding::DecoderTrap;
use encoding::label::encoding_from_whatwg_label;

// open text file
let mut fh = OpenOptions::new().read(true).open(filepath).expect(
    "Could not open file",
);
let mut reader: Vec<u8> = Vec::new();

// read file
fh.read_to_end(&mut reader).expect("Could not read file");

// detect charset of the file
let result = detect(&reader);
// result.0 Encode
// result.1 Confidence
// result.2 Language

// decode file into utf-8
let coder = encoding_from_whatwg_label(charset2encoding(&result.0));
if coder.is_some() {
    let utf8reader = coder.unwrap().decode(&reader, DecoderTrap::Ignore).expect("Error");
}

No runtime deps