-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1018 Bytes
/
Copy pathCargo.toml
File metadata and controls
42 lines (36 loc) · 1018 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "boolmesh"
version = "0.1.9"
edition = "2024"
description = "Robust 3D mesh boolean library"
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/komietty/boolmesh"
authors = ["Saki Komikado <komietty@gmail.com>"]
keywords = ["3d", "geometry", "graphics", "modeling"]
categories = ["algorithms", "mathematics", "graphics", "simulation", "game-development"]
exclude = ["/examples", ".gitignore"]
[dependencies]
glam = "0.30.9"
rayon = { version = "1.11.0", optional = true }
tobj = {version = "4.0.3", optional = true}
bevy = { version = "0.16.1", optional = true }
bevy_panorbit_camera = { version = "0.26.0", optional = true }
[features]
default = []
verbose = []
f32 = []
rayon = ["dep:rayon"]
bevy = [
"dep:tobj",
"dep:bevy",
"dep:bevy_panorbit_camera",
]
[[example]]
name = "menger_sponge"
path = "examples/menger_sponge.rs"
required-features = ["bevy"]
[[example]]
name = "multiple_models"
path = "examples/multiple_models.rs"
required-features = ["bevy"]