# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "nif" version = "0.5.0" authors = ["Romet Tagobert "] exclude = ["tests/*"] description = "A super-primitive Gamebryo NIF parser targeting version 20.0.0.4" homepage = "https://github.com/amPerl/nif" readme = "README.md" categories = [] license = "MIT" repository = "https://github.com/amPerl/nif" [[bin]] name = "nif2obj" required-features = ["obj_export"] [[bin]] name = "nif2gltf" required-features = ["gltf_export"] [dependencies.anyhow] version = "1.0.72" [dependencies.binrw] version = "0.14.0" [dependencies.glam] version = "0.28.0" [dependencies.gltf] version = "1.4.1" optional = true [dependencies.gltf-json] version = "1.4.1" optional = true [dependencies.thiserror] version = "1.0.43" [features] default = [ "obj_export", "gltf_export", ] gltf_export = [ "gltf", "gltf-json", ] obj_export = []