-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
28 lines (24 loc) · 847 Bytes
/
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
[package]
name = "meshlite"
version = "0.2.0"
authors = ["Jeremy HU <[email protected]>", "anderejd <https://github.com/anderejd>"]
description = "meshlite is a library with focus on 3D mesh generating and processing in rust language. Currently, it’s been used in Dust3D project as the core library of mesh generating. https://dust3d.org"
repository = "https://github.com/huxingyi/meshlite"
readme = "README.md"
keywords = ["mesh", "3D", "polygon", "graphics", "halfedge"]
categories = ["rendering", "rendering::data-formats"]
license = "MIT"
[badges]
appveyor = { repository = "huxingyi/meshlite" }
maintenance = { status = "experimental" }
# Uncomment when using the profiler script
# [profile.release]
# debug = true
[lib]
name = "meshlite"
crate-type = ["lib"]
[dependencies]
cgmath = "0.16"
petgraph = "0.4"
fnv = "1"
smallvec = "0.6"