-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 718 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (21 loc) · 718 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
[package]
name = "box_intersect_ze"
version = "0.1.1"
authors = ["derivator <derivator@users.noreply.github.com>"]
edition = "2018"
license = "GPL-3.0-or-later"
description = "Broad phase collision detection using Zomorodian and Edelsbrunner's hybrid algorithm (streamed segment trees with pruning and scanning)"
repository = "https://github.com/derivator/box_intersect_ze"
keywords = ["collision", "segment", "tree", "AABB", "box"]
categories = ["game-development"]
[dependencies]
rand = { version = "0.8.3", optional = true }
[features]
default = ["rand-crate"]
rand-crate = ["rand"]
[[example]]
name = "benchmark"
required-features = ["rand-crate"]
[dev-dependencies]
rand_chacha = "0.3.0"
once_cell = "1.17.1"