postgis_diesel 2.4.1

An extension for Diesel framework to support PostGIS geometry datatype.
Documentation
#[macro_use]
extern crate diesel;
#[cfg(any(feature = "serde", feature = "serde_geojson"))]
#[macro_use]
extern crate serde;

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

mod ewkb;
pub mod functions;
pub mod functions_nullable;
#[cfg(feature = "serde_geojson")]
mod geojson;
mod geometrycollection;
mod geometrycontainer;
mod linestring;
mod multiline;
mod multipoint;
mod multipolygon;
pub mod operators;
mod points;
mod polygon;
pub mod sql_types;
pub mod types;