forked from igorbologovv/lodtree
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (46 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
54
55
56
[package]
name = "spatialtree"
description = "A fast and flexible generic spatial tree collection (Octree, Quadtree, etc)"
version = "0.1.2"
edition = "2021"
license = "GPL-3.0"
repository = "https://github.com/alexpyattaev/spatialtree"
documentation = "https://docs.rs/spatialtree"
keywords = ["octree", "quadtree", "tree", "lod", "generic"]
categories = ["data-structures"]
exclude = [".github/"]
[dependencies]
arrayvec = "0.7"
duplicate = "1.0"
slab = "0.4"
rand = { version = "0.8", features = ['small_rng'], optional = true }
[features]
default = ["rand"]
rand = ["dep:rand"]
[dev-dependencies]
freelist = "0.1"
lru = "0.10.0"
rayon = "1.5"
glium = "0.30"
rand_derive = "0.5.0"
criterion = { version = "0.4.0", features = ['html_reports'] }
[[bench]]
name = "iterators"
harness = false
[[bench]]
name = "freelist"
harness = false
[[bench]]
name = "coordinates"
harness = false
[profile.release]
opt-level = 3
overflow-checks = false
debug = 0
strip = "symbols"
debug-assertions = false
lto = "fat"
[profile.bench]
debug = 0
lto = "fat"
strip = "symbols"