forked from JayKickliter/HexTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (46 loc) · 1.35 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
47
48
49
50
51
52
[package]
name = "hextree"
version = "0.3.1"
authors = ["Jay Kickliter <[email protected]>", "Andrew Thompson <[email protected]>"]
categories = ["science", "data-structures"]
edition = "2018"
documentation = "https://docs.rs/hextree"
exclude = [".github/*", "/assets/*", "/test/*"]
readme = "README.md"
keywords = ["geo", "geography", "geospatial", "gis", "h3"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/jaykickliter/HexTree"
repository = "https://github.com/jaykickliter/HexTree"
description = """
Location to value mapping.
"""
[package.metadata.docs.rs]
all-features = true
[features]
default = []
disktree = [
"byteorder",
"memmap",
"serde",
]
serde = ["dep:serde"]
[dependencies]
byteorder = { version = "1", optional = true }
memmap = { version = "0.7", optional = true }
serde = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
bincode = { version = "1.3.3" }
byteorder = { version = "1" }
criterion = { version = "0.3", features = ["html_reports"] }
geo = "0.27"
h3o = { version = "0.5.0", features = ["geo"] }
h3ron = "0.18"
tempfile = "3"
[dev-dependencies.h3-lorawan-regions]
git = "https://github.com/JayKickliter/h3-lorawan-regions.git"
rev = "7eead0c263bfc4fc482b3e46e6d9f221f8253b82"
default-features = false
features = ["compact", "nocompact", "EU868", "US915"]
[[bench]]
name = "benches"
harness = false