-
Notifications
You must be signed in to change notification settings - Fork 60
/
Cargo.toml
42 lines (34 loc) · 879 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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "geojson"
description = "Read and write GeoJSON vector geographic data"
version = "0.24.1"
authors = ["The GeoRust Developers <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/georust/geojson"
readme = "README.md"
documentation = "https://docs.rs/geojson/"
keywords = ["geojson", "gis", "json", "geo"]
edition = "2018"
[features]
default = ["geo-types"]
[dependencies]
serde = { version="~1.0", features = ["derive"] }
serde_json = "~1.0"
geo-types = { version = "0.7.13", features = ["serde"], optional = true }
thiserror = "1.0.20"
log = "0.4.17"
[dev-dependencies]
num-traits = "0.2"
criterion = "0.4.0"
[[bench]]
name = "parse"
harness = false
[[bench]]
name = "serialize"
harness = false
[[bench]]
name = "to_geo_types"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]