1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Diesel support for PostGIS geography types and functions

#![allow(proc_macro_derive_resolution_fallback)]

#[macro_use] extern crate diesel;
extern crate postgis;
#[cfg(feature = "serde")]
#[macro_use] extern crate serde;

pub mod sql_types;
pub mod types;