forked from georust/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 832 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
[package]
name = "gdal"
description = "GDAL bindings for Rust"
license = "MIT"
version = "0.11.0"
authors = [
"Alex Morega <[email protected]>",
"Johannes Drönner <[email protected]>",
]
repository = "https://github.com/georust/gdal"
edition = "2018"
[features]
default = []
bindgen = ["gdal-sys/bindgen"]
array = ["ndarray"]
[dependencies]
thiserror = "1.0"
libc = "0.2"
geo-types = { version = "0.7" }
gdal-sys = { path = "gdal-sys", version = "^0.5" }
ndarray = { version = "0.15", optional = true }
chrono = { version = "0.4" }
bitflags = "1.2"
once_cell = "1.8"
[build-dependencies]
gdal-sys = { path = "gdal-sys", version = "^0.5" }
semver = "1.0"
[dev-dependencies]
tempfile = "3.2"
trybuild = "1.0.42"
[workspace]
members = ["gdal-sys"]
[package.metadata.docs.rs]
rustc-args = ["--cfg", "docsrs"]