sqlitegis 0.1.3

SQLiteGIS: PostGIS-style spatial functions for SQLite in pure Rust.
Documentation
//! Convenience re-exports for the Diesel integration.
//!
//! ```rust
//! use sqlitegis::diesel::prelude::*;
//! use diesel::NullableExpressionMethods;
//!
//! // Type-check a common expression-method entrypoint from the prelude.
//! let expr = st_point(13.4, 52.5).nullable().st_astext();
//! let _ = expr;
//! ```

pub use crate::diesel::expression_methods::GeometryExpressionMethods;
pub use crate::diesel::functions::*;
pub use crate::diesel::query_helpers::{
    dwithin_sphere_indexed_sql, dwithin_sphere_indexed_sql_string, intersects_window_indexed_sql,
    intersects_window_indexed_sql_string, nearest_sphere_indexed_sql,
    nearest_sphere_indexed_sql_string, radius_bbox, RadiusBbox,
};
pub use crate::diesel::types::{Geography, Geometry};