Sam Leffler
Results
2
issues of
Sam Leffler
Commit [4ef07e25a8b08153d527db84dd7f02d398ea1040](https://github.com/tkaitchuck/constrandom/commit/4ef07e25a8b08153d527db84dd7f02d398ea1040) broke no_std support. This in turn broke my no_std usage of the hashbrown crate because I use ahash with the compile-time-rng feature which brings in const-random. (ahash pins...
We've been using hashbrown in an embedded environment (no os rng) with: hashbrown = { version = "0.11", features = ["ahash-compile-time-rng"] } recent (maybe) changes removed the "ahash-compile-time-rng" feature. The...