From 3918896cd8f12d479122f7f69686ab8d122e5b87 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 13 Apr 2022 13:28:36 +0200 Subject: [PATCH] Upgrade to latest `threemf` --- Cargo.lock | 4 ++-- fj-app/Cargo.toml | 2 +- fj-app/src/main.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5be43a446..bfb551ed5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2543,9 +2543,9 @@ dependencies = [ [[package]] name = "threemf" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0c98800ca8044fa88359515e47c1e2a432dd463b7cfb0764307d5e643e6cc93" +checksum = "02a12818d477c54ac38deb1bd8e222036385b594c020f02097914b6ac81cfff3" dependencies = [ "thiserror", "zip", diff --git a/fj-app/Cargo.toml b/fj-app/Cargo.toml index f90fbfaf3..ec642080e 100644 --- a/fj-app/Cargo.toml +++ b/fj-app/Cargo.toml @@ -18,7 +18,7 @@ futures = "0.3.21" nalgebra = "0.30.0" parry3d-f64 = "0.8.0" thiserror = "1.0.30" -threemf = "0.2.0" +threemf = "0.3.0" tracing = "0.1.33" wgpu = "0.12.0" wgpu_glyph = "0.16.0" diff --git a/fj-app/src/main.rs b/fj-app/src/main.rs index 43b3953d7..9631ebfb3 100644 --- a/fj-app/src/main.rs +++ b/fj-app/src/main.rs @@ -85,7 +85,7 @@ fn main() -> anyhow::Result<()> { triangles, }; - threemf::write(path, &mesh)?; + threemf::write(&path, &mesh)?; return Ok(()); }