diesel_point/
lib.rs

1//! Diesel support for Point types in Postgres
2
3#![allow(proc_macro_derive_resolution_fallback)]
4
5#[macro_use]
6extern crate diesel;
7#[cfg(feature = "serde")]
8#[macro_use]
9extern crate serde;
10
11pub mod sql_types;
12pub mod types;