
IFClite gets a native DLL for in-process IFC parsing in Rhino, Grasshopper, and Revit
IFClite merged PR #1182, a contribution from Mathias Sønderskov Schaltz that lets IFClite parse IFC inside the CAD process — as a plain DLL. The clean way to call a Rust engine from Grasshopper or Revit used to mean running a local server and talking to it over HTTP. But the moment something opens a port on a managed machine, enterprise IT lights up: firewall rules, security reviews, the whole dance. The FFI wires IFClite straight into the process instead. A new ifc-lite-ffi crate builds with crate-type = ["cdylib"] to ifc_lite_ffi.dll, and the host loads it like any other library. No server. No port. No network. Just a function call. ...








