forked from sdd/kiddo_v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (43 loc) · 1.04 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
53
[package]
name = "kiddo"
version ="0.1.4"
authors = ["Scott Donnelly <scott@donnel.ly>", "Rui Hu <code@mrhooray.com>"]
description = "K-dimensional tree in Rust for fast geospatial indexing and nearest neighbors lookup"
keywords = ["kd-tree", "kdtree", "kd", "nearest", "neighbor"]
readme = "README.md"
repository = "https://github.com/sdd/kiddo"
documentation = "https://docs.rs/kiddo"
license = "MIT OR Apache-2.0"
autobenches = false
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[dev-dependencies]
rand = "0.6.5"
lazy_static = "1.4.0"
criterion = "0.3.4"
aligned = "0.3.4"
serde = "1.0"
serde_json = "1.0.64"
[dependencies]
num-traits = "0.2"
[dependencies.serde]
version = "1.0"
optional = true
[dependencies.serde_derive]
version = "1.0"
optional = true
[features]
serialize = ["serde", "serde_derive"]
[[bench]]
name = "add_points"
harness = false
[[bench]]
name = "nearest_3d_unit_sphere"
harness = false
[[bench]]
name = "within_3d_unit_sphere"
harness = false
[[bench]]
name = "best_within_3d_unit_sphere"
harness = false