-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from JosiahParry/places
add places compatibility and client
- Loading branch information
Showing
11 changed files
with
2,078 additions
and
50 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
[package] | ||
name = "serde_esri" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/josiahparry/serde_esri" | ||
authors = ["Josiah Parry<[email protected]>"] | ||
categories = ["science::geo", "parser-implementations", "encoding"] | ||
keywords = ["esri", "arcgis", "geo", "gis", "spatial"] | ||
readme = "README.md" | ||
description = "A library for serializing and deserializing Esri JSON FeatureSet and Geometry objects." | ||
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 = "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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//! Representation of the [Places Service REST API](https://developers.arcgis.com/rest/places/) types and responses. Activate the `"places-client"` feature to enable the `PlacesClient` struct and the ability to query the API. | ||
mod places; | ||
pub use places::*; | ||
|
||
pub mod query; |
Oops, something went wrong.