mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-21 21:41:48 +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.