diesel-point 0.1.1

Diesel support for Point types in Postgres
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Diesel support for Point types in Postgres

#![allow(proc_macro_derive_resolution_fallback)]

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

pub mod sql_types;
pub mod types;