uefi-rs/xtask
Philipp Schuster 049cb57a09
xtask: allow anonymous unit constant
Helpful for checks such as:

```rust
const _: () = {
    assert!(size_of::<MemoryDescriptor>() == 40);
    assert!(align_of::<MemoryDescriptor>() == 8);

    assert!(offset_of!(MemoryDescriptor, ty) == 0);
    assert!(offset_of!(MemoryDescriptor, phys_start) == 8);
    assert!(offset_of!(MemoryDescriptor, virt_start) == 16);
    assert!(offset_of!(MemoryDescriptor, page_count) == 24);
    assert!(offset_of!(MemoryDescriptor, att) == 32);
};
```
2026-08-19 17:34:16 +02:00
..
src xtask: allow anonymous unit constant 2026-08-19 17:34:16 +02:00
Cargo.toml xtask: Update to syn-3 2026-08-09 13:40:37 -04:00