forked from Twinklebear/tobj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (32 loc) · 867 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
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "tobj"
version = "3.2.0"
edition = "2018"
authors = ["Will Usher <[email protected]>", "Moritz Moeller <[email protected]>"]
description = "A lightweight OBJ loader in the spirit of tinyobjloader"
homepage = "https://github.com/Twinklebear/tobj"
documentation = "https://docs.rs/tobj/"
repository = "https://github.com/Twinklebear/tobj"
readme = "README.md"
keywords = ["obj", "wavefront", "graphics"]
license = "MIT"
exclude = [
"*.obj",
"*.mtl",
".travis.yml",
]
[features]
default = ["ahash"]
merging = []
reordering = []
async = []
[dependencies]
ahash = { version = "0.7.2", optional = true }
log = { version = "0.4.14", optional = true }
[dev-dependencies]
tokio-test = "0.4.2"
[profile.dev]
split-debuginfo = "unpacked"
opt-level = 3
[package.metadata.docs.rs]
features = ["log", "merging", "reordering", "async"]