I generated a very large enum (it's the icon set https://lucide.dev/icons/) . So I have 1424 cases, but sadly it breaks with wit-bindgen with the following error:
Caused by:
enum cases size is out of bounds (at offset 0xdd)
I tried using a variant instead, but same error. So is this expected or a bug? Is there a suggested alternative for my usecase of exposing a typesafe icon set to my webassembly components?