binaryornot

Crates.iobinaryornot
lib.rsbinaryornot
version1.0.0
sourcesrc
created_at2019-06-11 19:59:51.749243
updated_at2019-06-11 19:59:51.749243
descriptionDetect whether a file is binary or not
homepage
repositoryhttps://github.com/keirlawson/binaryornot
max_upload_size
id140461
size513,962
Keir Lawson (keirlawson)

documentation

README

binaryornot

Build Status

A Rust port of binaryornot, letting you detect whether a file is binary or text.

Usage

Add the following to your cargo.toml:

[dependencies]
binaryornot = "1.0"
use binaryornot;

if binaryornot::is_binary("/path/to/some/file").expect("unable to read file") {
    println!("a binary!");
}

Limitations

Due to relying on the encoding crate for detecting different possible text encodings, UTF-32 will not be correctly detected as text, unlike in the original Python binaryornot implementation.

Licence

As indicated in the cargo.toml, this library can be consumed either under the MIT or Apache 2.0 licences. However, it should be noted that one of its dependencies, chardet, is licenced under the LGPL, meaning that any program statically linking it must also be distributed under the LGPL.

Commit count: 7

cargo fmt