-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
72 lines (60 loc) · 1.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "polyanya"
version = "0.11.1"
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 = []
detailed-layers = []
serde = ["glam/serde", "bvh2d/serde", "dep:serde"]
[dependencies]
tracing = { version = "0.1", optional = true }
hashbrown = { version = "0.15" }
glam = { version = "0.29", features = ["approx"] }
smallvec = { version = "1.13", features = ["union", "const_generics"] }
bvh2d = { version = "0.6", git = "https://github.com/mockersf/bvh2d" }
serde = { version = "1.0", features = ["derive"], optional = true }
spade = "=2.10"
geo = "0.29.0"
log = "0.4"
thiserror = "1"
[dev-dependencies]
criterion = "0.5"
tracing-tracy = "0.11"
tracing-subscriber = "0.3"
tracing = "0.1"
[workspace]
members = ["examples/traced"]
[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
[[bench]]
name = "triangulation"
harness = false
[[bench]]
name = "merger"
harness = false
[package.metadata.docs.rs]
features = ["async", "detailed-layers"]