mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-28 02:18:50 +00:00
fixes firezone/product#679 Originally I was using pointers to `HashMap` elements to store the resource_table, the problem is that if there is a realloc those pointers would be invalidated. So now, we are wrapping the elements in `Rc` and removing most unsafety.