-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
40 lines (35 loc) · 1.09 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
[package]
name = "proj"
description = "High-level Rust bindings for the latest stable version of PROJ"
version = "0.27.2"
authors = [
"The Georust Developers <[email protected]>"
]
repository = "https://github.com/georust/proj"
documentation = "https://docs.rs/proj/"
keywords = ["proj", "projection", "osgeo", "geo"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2018"
rust-version = "1.70"
[dependencies]
proj-sys = { version = "0.24.0", path = "proj-sys" }
geo-types = { version = "0.7.10", optional = true }
libc = "0.2.119"
num-traits = "0.2.14"
thiserror = "1.0.30"
ureq = { version = "2.0.0", optional = true }
[workspace]
members = ["proj-sys"]
[features]
default = ["geo-types"]
bundled_proj = [ "proj-sys/bundled_proj" ]
pkg_config = [ "proj-sys/pkg_config" ]
network = ["ureq", "proj-sys/network"]
[dev-dependencies]
# approx version must match the one used in geo-types
approx = ">= 0.4.0, < 0.6.0"
geo-types = { version = "0.7.10", features = ["approx"] }
[package.metadata.docs.rs]
features = [ "proj-sys/nobuild", "network", "geo-types" ]
rustdoc-args = ["--cfg", "docsrs"]