cld2 1.0.2

Detect natural language used in text using the cld2 library
Documentation
1
2
3
4
5
6
7
8
9
//! This can be used to check the version of `cld2` we're using.

extern crate cld2;

use cld2::detector_version;

fn main() {
    println!("cld2 version: {}", detector_version());
}