-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (29 loc) · 1.02 KB
/
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
30
31
32
33
34
[package]
name = "serde_esri"
version = "0.3.1"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/josiahparry/serde_esri"
authors = ["Josiah Parry<josiah.parry@gmail.com>"]
categories = ["science::geo", "parser-implementations", "encoding"]
keywords = ["esri", "arcgis", "geo", "gis", "spatial"]
readme = "README.md"
description = "A library for serializing and deserializing JSON from Esri Location Services."
[dependencies]
arrow = { version = "51.0.0", optional = true }
geoarrow = { version = "0.2.0", optional = true }
geo-types = { version = "0.7.12", optional = true }
reqwest = { version = "0.12.3", optional = true }
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
serde_with = "3.4.0"
derive_builder = { version = "0.20.0" }
[lib]
crate-type = ["staticlib", "lib"]
[features]
default = []
places-client = ["reqwest/blocking", "reqwest/json"]
geo = ["dep:geo-types"]
geoarrow = ["dep:geo-types", "dep:geoarrow", "arrow"]
[package.metadata.docs.rs]
all-features = true