From 9fdd26e1edfffbd71e7b69b66002d30d5808cbe4 Mon Sep 17 00:00:00 2001 From: Hakan Seven Date: Fri, 31 Jul 2026 18:05:51 +0300 Subject: [PATCH] build: update acadrust codec revision --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/entities/solid3d.rs | 18 ------------------ 3 files changed, 2 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9084e01..3b8c4cf3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,7 +81,7 @@ checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618" [[package]] name = "acadrust" version = "0.4.0" -source = "git+https://github.com/OpenAEC-Foundation/acadifc.git?rev=a7b1e07#a7b1e07f6b3884b139684b763a8a86f27705eb70" +source = "git+https://github.com/OpenAEC-Foundation/acadifc.git?rev=6d9b1ec#6d9b1ec42acd171e95ea3954da773aac6869e10f" dependencies = [ "ahash 0.8.12", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index a5718585..1255dcb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ windows-sys = { version = "0.61", features = ["Win32_UI_Shell", "Win32_UI_Window ashpd = { version = "0.13.13", default-features = false, features = ["async-io", "wayland"] } [patch.crates-io] -acadrust = { git = "https://github.com/OpenAEC-Foundation/acadifc.git", rev = "a7b1e07" } +acadrust = { git = "https://github.com/OpenAEC-Foundation/acadifc.git", rev = "6d9b1ec" } iced_core = { git = "https://github.com/iced-rs/iced.git", rev = "23604ff22ab0aad9e00b9327cb7b8546ed84db39" } iced_widget = { git = "https://github.com/iced-rs/iced.git", rev = "23604ff22ab0aad9e00b9327cb7b8546ed84db39" } diff --git a/src/entities/solid3d.rs b/src/entities/solid3d.rs index f8ad6bee..ed5194a5 100644 --- a/src/entities/solid3d.rs +++ b/src/entities/solid3d.rs @@ -697,24 +697,6 @@ fn surface_construction_section(surface: &Surface) -> PropSection { ]); } } - props.extend([ - ro( - "Raw DWG Body", - "srf_raw_dwg", - surface.raw_dwg_data.as_ref().map_or_else( - || "None".to_string(), - |bytes| format!("{} bytes; {} handle bits", bytes.len(), surface.dwg_handle_bits), - ), - ), - ro( - "Raw Source Version", - "srf_raw_version", - surface - .dwg_source_version - .map(|version| format!("{version:?}")) - .unwrap_or_else(|| "None".to_string()), - ), - ]); PropSection { title: "Surface Construction".into(), props,