jcrist / msgspec

A fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML
https://jcristharif.com/msgspec/
BSD 3-Clause "New" or "Revised" License
2.44k stars 75 forks source link

Support custom dict key types in JSON #602

Closed jcrist closed 11 months ago

jcrist commented 11 months ago

This adds support for encoding/decoding custom types when used as dict keys in the JSON encoder/decoder. Previously the JSON implementation failed to fallback to enc_hook/dec_hook for custom dict keys.

Fixes #568.