forked from georust/gdal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (31 loc) · 848 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
[package]
name = "gdal"
description = "GDAL bindings for Rust"
license = "MIT"
version = "0.6.1"
authors = [
"Alex Morega <[email protected]>",
"Johannes Drönner <[email protected]>"
]
repository = "https://github.com/georust/gdal"
documentation = "https://georust.github.io/gdal/"
edition = "2018"
[features]
bindgen = ["gdal-sys/bindgen"]
gdal_2_2 = ["gdal-sys/min_gdal_version_2_2"]
gdal_2_4 = ["gdal-sys/min_gdal_version_2_4"]
gdal_3_0 = ["gdal-sys/min_gdal_version_3_0"]
array = ["ndarray"]
datetime = ["chrono"]
[dependencies]
failure = "0.1"
failure_derive = "0.1"
libc = "0.2"
geo-types = "0.6"
gdal-sys = { path = "gdal-sys", version = "0.2" }
#gdal-sys = "0.2"
num-traits = "0.2"
ndarray = {version = "0.12.1", optional = true }
chrono = { version = "0.4", optional = true }
[workspace]
members = ["gdal-sys"]