-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
34 lines (29 loc) · 926 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
[package]
name = "geo-index"
version = "0.2.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
rust-version = "1.75"
license = "MIT OR Apache-2.0"
repository = "https://github.com/kylebarron/geo-index"
description = "Fast, immutable, ABI-stable spatial indexes."
keywords = ["rtree", "kdtree", "spatial", "spatial-index", "nearest-neighbor"]
categories = ["data-structures", "algorithms", "science::geo"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytemuck = "1"
float_next_after = "1"
geo-traits = "0.2"
num-traits = "0.2"
rayon = { version = "1.8.0", optional = true }
thiserror = "1"
tinyvec = { version = "1", features = ["alloc", "rustc_1_40"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
geo = "0.28.0"
geozero = "0.12"
rstar = "0.12"
zip = "2.2.2"
[[bench]]
name = "rtree"
harness = false