-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 1.25 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
[package]
name = "smesh"
version = "0.2.7"
edition = "2021"
authors = ["Ben Dzaebel <ben@bendz.dev>"]
homepage = "https://bendz.dev"
license = "MPL-2.0"
repository = "https://github.com/Bendzae/SMesh"
keywords = ["mesh", "halfedge", "procedural", "polygon", "3D"]
description = "A fast and ergonomic surface-mesh/halfedge-mesh implementation and polygon mesh manipulation library based on pmp"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glam = "0.30.1" # Tracking bevys glam version for convencience
slotmap = "1.0.7"
itertools = "0.14.0"
thiserror = "2.0.9"
xatlas-rs-v2 = { version = "0.1.4", optional = true } # Optional dependency for UV unwrapping
# Adapter dependencies
bevy = { version = "0.17", default-features = false, features = [
"bevy_pbr",
"bevy_ui",
"bevy_gizmos",
"bevy_log",
], optional = true }
[dev-dependencies]
bevy = "0.17.2"
bevy_panorbit_camera = { version = "0.32.0", features = ["bevy_egui"] }
bevy-inspector-egui = "0.35.0"
fastrand = "2.3.0"
fastrand-contrib = "0.1.0"
[features]
default = ["bevy_adapter"]
bevy_adapter = ["dep:bevy"]
xatlas = ["dep:xatlas-rs-v2"]
[[example]]
name = "uv_unwrap"
required-features = ["xatlas"]