postgis 0.1.5

An extension to rust-postgres, adds support for PostGIS.
# rust-postgis
PostGIS helper library.

[![Build Status](https://travis-ci.org/andelf/rust-postgis.svg?branch=master)](https://travis-ci.org/andelf/rust-postgis)
[![Crates.io](https://meritbadge.herokuapp.com/postgis)](https://crates.io/crates/postgis)

- PostGIS type helper
- GCJ02 support
- Type-safe SRID support

## HowTo

```rust
use postgres::{Connection, SslMode};
use postgis::{Point, LineString, WGS843};

fn main() {
    // conn ....
    let stmt = conn.prepare("SELECT * FROM busline").unwrap();
    for row in stmt.query(&[]).unwrap() {
        println!(">>>>>> {}", row.get::<_, LineString<Point>>("route"));
    }
}
```