-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathCargo.toml
44 lines (39 loc) · 1.24 KB
/
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
40
41
42
43
44
[package]
name = "tobj"
version = "4.0.3"
edition = "2021"
authors = ["Will Usher <will@willusher.io>", "Moritz Moeller <virtualritz@protonmail.com>"]
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"
categories = ["graphics", "games", "visualization", "rendering::data-formats"]
keywords = ["3d", "obj", "wavefront", "graphics", "parser"]
license = "MIT"
exclude = [
"*.obj",
"*.mtl",
".travis.yml",
"fuzz/*",
]
[features]
default = ["ahash"]
merging = []
reordering = []
async = []
arbitrary = ["arbitrary/derive"]
futures = ["dep:futures-lite", "async"]
tokio = ["dep:tokio", "async"]
use_f64 = []
[dependencies]
arbitrary = { version = "1.3.0", optional = true }
ahash = { version = "0.8.7", optional = true }
futures-lite = { version = "2.6.0", optional = true }
log = { version = "0.4.17", optional = true }
tokio = { version = "1.43.0", optional = true, features = ["io-util", "fs"] }
[dev-dependencies]
tokio-test = "0.4.2"
float_eq = "1.0.1"
[package.metadata.docs.rs]
features = ["log", "merging", "reordering", "async", "futures", "tokio", "use_f64"]