forked from Dimev/lodtree
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (21 loc) · 706 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (21 loc) · 706 Bytes
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
[package]
name = "lodtree"
description = "A simple crate to help create octrees and quadtrees for chunked level of detail"
version = "0.1.5"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Dimev/lodtree"
documentation = "https://docs.rs/lodtree"
keywords = ["lod", "terrain", "octree", "quadtree", "tree"]
categories = ["data-structures"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dev_dependencies]
rayon = "1.5"
glium = "0.30"
rand ={version="0.8.5", features=['small_rng']}
rand_derive = "0.5.0"
criterion = {version="0.3", features=['html_reports']}
[[bench]]
name = "iterators"
harness = false