Use Google location history files in rust

Getting started

```rust extern crate location_history;

use location_history::LocationsExt;

let mut contents = String::new(); File::open(file).unwrap().readtostring(&mut contents).unwrap(); let locations = locationhistory.deserialize(&contents).filteroutliers(); for location in locations { println!("{:?}", location); } ```