-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
47 lines (39 loc) · 1.13 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]
authors = ["Gaute Hope <eg@gaute.vetsj.com>"]
description = "A fast and limited-memory structure with a landmask based on GSHHG for determing whether a point on Earth is on land or in the ocean"
name = "roaring-landmask"
version = "0.9.2"
edition = "2018"
license = "MIT"
homepage = "https://github.com/gauteh/roaring-landmask"
repository = "https://github.com/gauteh/roaring-landmask"
exclude = [ "assets/*" ]
[lib]
name = "roaring_landmask"
crate-type = ["rlib", "cdylib"]
[[bin]]
name = "make_bitmap"
path = "src/devel/make_bitmap.rs"
[dependencies]
geos = { version = "9" }
lazy_static = "1.4"
numpy = { version = "0.21" }
pyo3 = { version = "0.21" , features = [ "abi3-py39" ] }
roaring = "0.10"
rust-embed = "8"
xz2 = "0.1"
ndarray = { version = "0.15", features = [ "rayon" ] }
[dev-dependencies]
rayon = "1"
[build-dependencies]
reqwest = { version = "0.12", default-features = false, features = [ "blocking", "rustls-tls" ] }
ring = "0.17"
path-slash = "0.2"
[features]
extension-module = ["pyo3/extension-module"]
simd = [ "roaring/simd" ]
static = [ "geos/static" ]
nightly = [ "simd" ]
default = []
[profile.release]
debug = true