-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (46 loc) · 937 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
42
43
44
45
46
47
48
49
50
51
[package]
name = "py_geo_interface"
description = "Exchange vector geometries between Rust and Python using pyo3 and Pythons __geo_interface__ protocol."
version = "0.8.0"
edition = "2021"
license = "MIT/Apache-2.0"
repository = "https://github.com/nmandery/py_geo_interface"
homepage = "https://github.com/nmandery/py_geo_interface"
authors = [
"Nico Mandery <[email protected]>"
]
keywords = [
"geo",
"geospatial",
"geography",
"pyo3",
"python"
]
[features]
default = ["f64"]
f64 = []
f32 = []
i8 = []
i16 = []
i32 = []
i64 = []
u8 = []
u16 = []
u32 = []
u64 = []
wkb = ["dep:geozero"]
# to be used when running the unittests of this crate
test = ["pyo3/auto-initialize"]
[dependencies]
geo-types = "0.7"
num-traits = "0.2"
[dependencies.pyo3]
version = "0.22"
features = [
#"abi3"
]
[dependencies.geozero]
version = "0.14"
default-features = false
features = ["with-geo", "with-wkb"]
optional = true