[package] name = "xc3_model" version = "0.15.0" authors = ["ScanMountGoat <>"] description = "High level library for xc3_lib" license = "MIT" documentation = "https://docs.rs/xc3_model" repository = "https://github.com/ScanMountGoat/xc3_lib" edition = "2021" [dependencies] xc3_lib = { version = "0.15.0", path = "../xc3_lib", features = ["image"] } glam = { workspace = true, features = ["bytemuck"] } gltf = { version = "=1.4.1", features = ["extras", "KHR_texture_transform"], optional = true } gltf-json = { version = "=1.4.1", optional = true } binrw.workspace = true image_dds = { workspace = true, default-features = true } rayon.workspace = true log.workspace = true ordered-float = "4.1.1" serde_json = { version = "1.0", optional = true } indexmap = { workspace = true, features = ["rayon"] } thiserror = "1.0" arbitrary = { version = "1.0", features = ["derive"], optional = true } smol_str.workspace = true [dev-dependencies] hexlit = "0.5.5" pretty_assertions = "1.4.0" hex = "0.4.3" approx = "0.5.1" [features] arbitrary = ["dep:arbitrary", "xc3_lib/arbitrary", "indexmap/arbitrary", "ordered-float/arbitrary"] gltf = ["dep:gltf", "dep:gltf-json", "dep:serde_json"]