#orm #sql

diesel-geography

Diesel support for PostGIS geography types and functions

2 unstable releases

Uses old Rust 2015

0.2.0 Nov 24, 2018
0.1.0 Nov 24, 2018

#220 in #orm


Used in birdseed

MIT/Apache

5KB
53 lines

diesel-geography   Build Status Latest Version [docs]

Diesel support for PostGIS geography types and functions

How to use it:

In your sql schema, you have a column location geography(point, 4326) not null. When Diesel generates the schema (using table! {}) this column will look like location -> Geography. To ensure that the Geography type is in scope, read this guide and add use diesel_geography::sql_types::* to the import_types key in your diesel.toml file.

E.g. it will look like this:

[print_schema]
file = "src/schema.rs"

import_types = ["diesel::sql_types::*", "diesel_geography::sql_types::*"]

In your ORM struct, write location: GeogPoint. Now you can use this struct / table in your diesel queries.

Dependencies

~9MB
~263K SLoC