kramar11

Results 2 issues of kramar11

### Description Hello, I noticed in a project where I have to frequently call `msgspec.structs.fields` that this method is compared to dataclasses extremely slow (about 20x slower). ```python from dataclasses...

### Description When using msgspec.structs.replace to create a new object, the `__post_init__` method is not called (unlike with dataclass.replace). ``` python from dataclasses import dataclass, replace import msgspec @dataclass class...