-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.05 KB
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
[workspace]
members = [
"neo-aabb",
"neo-bounded",
"neo-coordinate-system",
"neo-float",
"neo-geo-boolops",
"neo-geo-glam-interop",
"neo-intersection",
"neo-line-segment",
"neo-plane",
"neo-ray",
"neo-surface",
"neo-tessellation",
]
[workspace.dependencies]
# needed
geo = { version = "0.26", default-features = false }
glam = "0.24"
spade = "2.2"
# workspace crates
neo-aabb = { path = "neo-aabb" }
neo-bounded = { path = "neo-bounded" }
neo-coordinate-system = { path = "neo-coordinate-system" }
neo-float = { path = "neo-float" }
neo-geo-boolops = { path = "neo-geo-boolops" }
neo-geo-glam-interop = { path = "neo-geo-glam-interop" }
neo-intersection = { path = "neo-intersection" }
neo-line-segment = { path = "neo-line-segment" }
neo-plane = { path = "neo-plane" }
neo-ray = { path = "neo-ray" }
neo-surface = { path = "neo-surface" }
neo-tessellation = { path = "neo-tessellation" }
# dev
geo-svg = "0.5"
rand = "0.8"
serde_json = "1.0"
[patch.crates-io]
geo = { git = "https://github.com/RobWalt/geo", branch = "feat/falliable-boolops" }