[package]
edition = "2021"
name = "tobj"
version = "4.0.4"
authors = [
"Will Usher <will@willusher.io>",
"Moritz Moeller <virtualritz@protonmail.com>",
]
build = false
exclude = [
"*.obj",
"*.mtl",
".travis.yml",
"fuzz/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight OBJ loader in the spirit of tinyobjloader"
homepage = "https://github.com/Twinklebear/tobj"
documentation = "https://docs.rs/tobj/"
readme = "README.md"
keywords = [
"3d",
"obj",
"wavefront",
"graphics",
"parser",
]
categories = [
"graphics",
"games",
"visualization",
"rendering::data-formats",
]
license = "MIT"
repository = "https://github.com/Twinklebear/tobj"
[package.metadata.docs.rs]
features = [
"log",
"merging",
"reordering",
"async",
"futures",
"tokio",
"use_f64",
]
[features]
arbitrary = ["arbitrary/derive"]
async = []
default = ["ahash"]
futures = [
"dep:futures-lite",
"async",
]
merging = []
reordering = []
tokio = [
"dep:tokio",
"async",
]
use_f64 = []
[lib]
name = "tobj"
path = "src/lib.rs"
[[example]]
name = "print_mesh"
path = "examples/print_mesh.rs"
[dependencies.ahash]
version = "0.8.7"
optional = true
[dependencies.arbitrary]
version = "1.3.0"
optional = true
[dependencies.futures-lite]
version = "2.6.0"
optional = true
[dependencies.log]
version = "0.4.17"
optional = true
[dependencies.tokio]
version = "1.43.0"
features = [
"io-util",
"fs",
]
optional = true
[dev-dependencies.float_eq]
version = "1.0.1"
[dev-dependencies.tokio-test]
version = "0.4.2"