You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vec, but backed by a stack-allocated array instead of a heap allocation. Effectively 5,000 downloads/day.
(crates.io numbers are higher - 23,000 downloads/day, but 18,000 of those are due to crossbeam-epoch depending on it and I've removed the dependency in latest git).
Plenty of unsafe, and while that's more or less expected of a low-level data structure, there's still a lot of things that could go wrong (looking at you, SmallVec), so this could really use a soundness audit.
The text was updated successfully, but these errors were encountered:
https://crates.io/crates/arrayvec
Vec, but backed by a stack-allocated array instead of a heap allocation. Effectively 5,000 downloads/day.
(crates.io numbers are higher - 23,000 downloads/day, but 18,000 of those are due to
crossbeam-epoch
depending on it and I've removed the dependency in latest git).Plenty of
unsafe
, and while that's more or less expected of a low-level data structure, there's still a lot of things that could go wrong (looking at you, SmallVec), so this could really use a soundness audit.The text was updated successfully, but these errors were encountered: