-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
36 lines (31 loc) · 997 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
35
36
[package]
name = "kd-tree"
version = "0.6.0"
authors = ["Yuichiro Terada <terada.yuichiro@gmail.com>"]
repository = "https://github.com/u1roh/kd-tree"
documentation = "https://docs.rs/kd-tree"
keywords = ["kdtree", "nearest-neighbor", "closest-point", "pointcloud"]
readme = "README.md"
description = "k-dimensional tree"
license = "MIT"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num-traits = "0.2.17"
ordered-float = "4.2.0"
typenum = "1.17.0"
paste = "1.0.14"
rayon = { version = "1.10.0", optional = true }
nalgebra = { version = "0.32.3", optional = true }
serde = { version = "1.0.195", features = ["derive"], optional = true }
[features]
nalgebra-serde = ["serde", "nalgebra", "nalgebra/serde-serialize"]
[dev-dependencies]
rand = "0.8.5"
criterion = "0.5.1"
fux_kdtree = { version = "0.2.0", package = "fux_kdtree" }
kdtree = "0.7.0"
serde_json = "1.0"
[[bench]]
name = "benchmark"
harness = false