-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathCargo.toml
43 lines (39 loc) · 1.2 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
35
36
37
38
39
40
41
42
43
[package]
name = "geos"
version = "10.0.0"
authors = [
"Matthieu Viry <[email protected]>",
"Adrien Matissart <[email protected]>",
"Antoine Desbordes <[email protected]>",
"Guillaume Pinot <[email protected]>",
"Guillaume Gomez <[email protected]>",
]
license = "MIT"
repository = "https://github.com/georust/geos"
keywords = ["geos", "libgeos", "geometry", "geography", "gis"]
categories = ["external-ffi-bindings", "algorithms"]
description = "Rust bindings for GEOS C API"
readme = "README.md"
edition = "2021"
rust-version = "1.65"
[features]
dox = ["geo-types", "wkt", "json", "geos-sys/dox"]
geo = ["geo-types", "wkt"]
json = ["geojson"]
static = ["geos-sys/static"]
v3_6_0 = []
v3_7_0 = ["geos-sys/v3_7_0", "v3_6_0"]
v3_8_0 = ["geos-sys/v3_8_0", "v3_7_0"]
v3_9_0 = ["geos-sys/v3_9_0", "v3_8_0"]
v3_10_0 = ["geos-sys/v3_10_0", "v3_9_0"]
v3_11_0 = ["geos-sys/v3_11_0", "v3_10_0"]
[dependencies]
libc = "0.2"
num = "0.4"
c_vec = "2"
geojson = { version = "0.24", optional = true }
geo-types = { version = "0.7", optional = true }
wkt = { version = "0.10.3", optional = true }
geos-sys = { path = "sys", version = "2.0.6" }
[package.metadata.docs.rs]
features = ["dox"]