`DefaultHasher` for `no_std`
Author: Person-93Created Aug 18, 2026Updated Sep 12, 2026
Labelsno_std
The pyclass macro generates code that uses DefaultHasher from the std library. hashbrown does not include this until 0.16, but pyo3 supports it starting from 0.15.
We can either:
- drop support for
0.15 - depend directly on the
foldhashcrate (this is whathashbrownuses)
Source: PyO3/pyo3