location-parser 0.1.0

Parses latitude/longitude from strings in a wide variety of formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate pest;
#[macro_use]
extern crate pest_derive;

mod error;
pub use error::*;
mod parse;
pub use parse::*;

#[cfg(test)]
mod tests;