Commit cef9d46
committed
Use BTreeMap internally
The `BTreeMap` is a drop in replacement for the `HashMap` with the
benefit that it is available in no-std environments.
We have a few uses of `HashMap`s internally within functions, we can use
`BTreeMap` instead.
Done in preparation for removing the `hashbrown` dependency.1 parent 4e2ee86 commit cef9d46
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
327 | 327 | | |
328 | 328 | | |
329 | 329 | | |
330 | | - | |
| 330 | + | |
331 | 331 | | |
332 | 332 | | |
333 | 333 | | |
| |||
347 | 347 | | |
348 | 348 | | |
349 | 349 | | |
350 | | - | |
| 350 | + | |
351 | 351 | | |
352 | 352 | | |
353 | 353 | | |
| |||
563 | 563 | | |
564 | 564 | | |
565 | 565 | | |
566 | | - | |
| 566 | + | |
567 | 567 | | |
568 | 568 | | |
569 | 569 | | |
| |||
0 commit comments