[package]
edition = "2024"
rust-version = "1.85"
name = "oxideav-obj"
version = "0.0.3"
authors = ["Mark Karpeles <admin@echelle.co.jp>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust Wavefront OBJ + MTL 3D mesh codec — implements oxideav-mesh3d's Decoder/Encoder traits"
homepage = "https://github.com/OxideAV/oxideav-obj"
readme = "README.md"
keywords = [
"obj",
"wavefront",
"3d",
"mesh",
"oxideav",
]
categories = [
"multimedia::encoding",
"rendering::data-formats",
]
license = "MIT"
repository = "https://github.com/OxideAV/oxideav-obj"
[features]
default = ["registry"]
registry = [
"dep:oxideav-core",
"oxideav-mesh3d/registry",
]
[lib]
name = "oxideav_obj"
path = "src/lib.rs"
[[test]]
name = "bezier_tessellation"
path = "tests/bezier_tessellation.rs"
[[test]]
name = "bmatrix_surface_tessellation"
path = "tests/bmatrix_surface_tessellation.rs"
[[test]]
name = "bmatrix_tessellation"
path = "tests/bmatrix_tessellation.rs"
[[test]]
name = "bspline_tessellation"
path = "tests/bspline_tessellation.rs"
[[test]]
name = "cardinal_tessellation"
path = "tests/cardinal_tessellation.rs"
[[test]]
name = "cube_roundtrip"
path = "tests/cube_roundtrip.rs"
[[test]]
name = "curv2_tessellation"
path = "tests/curv2_tessellation.rs"
[[test]]
name = "display_attributes"
path = "tests/display_attributes.rs"
[[test]]
name = "freeform_geometry"
path = "tests/freeform_geometry.rs"
[[test]]
name = "fuzz_regressions"
path = "tests/fuzz_regressions.rs"
[[test]]
name = "line_topology"
path = "tests/line_topology.rs"
[[test]]
name = "merging_groups"
path = "tests/merging_groups.rs"
[[test]]
name = "mtl_d_halo"
path = "tests/mtl_d_halo.rs"
[[test]]
name = "mtl_extra_params"
path = "tests/mtl_extra_params.rs"
[[test]]
name = "mtl_map_options"
path = "tests/mtl_map_options.rs"
[[test]]
name = "mtl_refl_typed"
path = "tests/mtl_refl_typed.rs"
[[test]]
name = "mtl_tf_alternatives"
path = "tests/mtl_tf_alternatives.rs"
[[test]]
name = "multi_material"
path = "tests/multi_material.rs"
[[test]]
name = "multi_name_groups"
path = "tests/multi_name_groups.rs"
[[test]]
name = "negative_index_encoder"
path = "tests/negative_index_encoder.rs"
[[test]]
name = "negative_indices"
path = "tests/negative_indices.rs"
[[test]]
name = "path_resolution"
path = "tests/path_resolution.rs"
[[test]]
name = "pbr_extension"
path = "tests/pbr_extension.rs"
[[test]]
name = "point_elements"
path = "tests/point_elements.rs"
[[test]]
name = "polygon_triangulation"
path = "tests/polygon_triangulation.rs"
[[test]]
name = "polyline_reconstruction"
path = "tests/polyline_reconstruction.rs"
[[test]]
name = "smoothing_groups"
path = "tests/smoothing_groups.rs"
[[test]]
name = "surface_tessellation"
path = "tests/surface_tessellation.rs"
[[test]]
name = "taylor_surface_tessellation"
path = "tests/taylor_surface_tessellation.rs"
[[test]]
name = "taylor_tessellation"
path = "tests/taylor_tessellation.rs"
[[test]]
name = "vertex_color_extension"
path = "tests/vertex_color_extension.rs"
[dependencies.oxideav-core]
version = "0.1"
optional = true
[dependencies.oxideav-mesh3d]
version = "0.0"
default-features = false
[dependencies.serde_json]
version = "1"