word_vec-rs-0.1.0 is not a library.
Visit the last successful build:
word_vec-rs-0.1.1
word_vec-rs
Memory efficient library to work with word vectors
Example
let space = new
// Parse binary file
.binary
// Index terms to find vectors faster.
.index_terms
.parse_file
.unwrap;
let hello = space.find_term.unwrap;
let hi = space.find_term.unwrap;
println!;