forked from georust/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 1.08 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
44
45
46
[package]
name = "gdal"
description = "GDAL bindings for Rust"
license = "MIT"
version = "0.16.0"
authors = [
"Alex Morega <[email protected]>",
"Johannes Drönner <[email protected]>",
]
categories = ["science::geo", "api-bindings"]
repository = "https://github.com/georust/gdal"
edition = "2021"
rust-version = "1.58"
[features]
default = []
bindgen = ["gdal-sys/bindgen"]
array = ["ndarray"]
[dependencies]
thiserror = "1.0"
libc = "0.2"
geo-types = { version = "0.7.11" }
gdal-sys = { path = "gdal-sys", version = "^0.9" }
ndarray = { version = "0.15", optional = true }
chrono = { version = "0.4.26", default-features = false }
bitflags = "2.4"
once_cell = "1.18"
[build-dependencies]
semver = "1.0"
[dev-dependencies]
tempfile = "3.8"
# Only used in the example
arrow = { version = "50.0", default-features = false, features = ["ffi"] }
[workspace]
members = ["gdal-sys"]
# docs.rs-specific configuration
[package.metadata.docs.rs]
# include `array` feature in documentation
features = ["array"]
# define attribute `docsrs` for feature badges
rustdoc-args = ["--cfg", "docsrs"]