-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 602 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 602 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "tri-mesh"
version = "0.6.0"
authors = ["Asger Nyman Christiansen <asgernyman@gmail.com>"]
edition = "2021"
description = "A triangle mesh data structure including basic operations."
license = "MIT"
readme = "README.md"
repository = "https://github.com/asny/tri-mesh"
categories = ["data-structures", "algorithms"]
keywords = ["mesh", "geometry", "3d", "half-edge", "graphics"]
exclude = ["/examples", ".gitignore"]
[features]
default = []
[dependencies]
cgmath = "0.18"
three-d-asset = "0.7"
thiserror = "1.0"
[dev-dependencies]
three-d-asset = {version="0.7", features = ["obj"] }