forked from vleue/polyanya
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (43 loc) · 1.01 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
[package]
name = "polyanya"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["pathfinding"]
readme = "README.md"
description = "Polygon Any Angle Pathfinding"
repository = "https://github.com/vleue/polyanya"
homepage = "https://github.com/vleue/polyanya"
documentation = "https://docs.rs/polyanya"
categories = ["game-development"]
[features]
default = ["async"]
stats = []
verbose = []
async = []
no-default-baking = []
[dependencies]
tracing = { version = "0.1", optional = true }
hashbrown = { version = "0.13" }
glam = { version = "0.23", features = ["approx"] }
smallvec = { version = "1.9", features = ["union", "const_generics"] }
bvh2d = { version = "0.3", git = "https://github.com/mockersf/bvh2d" }
[dev-dependencies]
criterion = "0.4"
tracing-tracy = "0.10"
tracing-subscriber = "0.3"
tracing = "0.1"
[lib]
bench = false
[[bench]]
name = "path"
harness = false
[[bench]]
name = "no_path"
harness = false
[[bench]]
name = "is_in_mesh"
harness = false
[[bench]]
name = "baking"
harness = false