-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
29 lines (25 loc) · 1011 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "postgis_diesel"
version = "2.4.1"
authors = ["Vitaly Merenkov <[email protected]>"]
edition = "2018"
description = "An extension for Diesel framework to support PostGIS geometry datatype."
homepage = "https://github.com/vitaly-m/postgis-diesel"
repository = "https://github.com/vitaly-m/postgis-diesel"
readme = "README.md"
keywords = ["PostGIS", "GIS", "GEO", "Diesel"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
diesel = { version = "2.2.3", features = ["postgres_backend", "with-deprecated"], default-features = false }
byteorder = "1.4"
serde = { version = "1.0", optional = true, features = ["derive"] }
schemars = { version = "0.8.20", optional = true }
[dev-dependencies]
diesel = { version = "2.2", features = ["postgres", "with-deprecated"], default-features = false }
dotenvy = "0.15"
serde_json = "1.0"
[features]
serde = ["dep:serde"]
serde_geojson = ["dep:serde"]
schemars = ["dep:schemars"]