Open CeleritasCelery opened 1 year ago
@DKerp ping
@CeleritasCelery Ping
Hey @bircni Thanks for taking ownership of this code! I am going to switch to using get-size2
since it has this fix among other improvements.
No Problem @CeleritasCelery please feel free to raise other issues or pull requests !
the next version I publish will include your changes!
Also opened an issue here: https://github.com/rustsec/advisory-db/issues/2078
Previously the
GetSize
impl for a boxed slice didn't have a bound onT
, soget_size
was being called on&T
instead ofT
. This meant that the size of each element was always being calculated to the size of a reference. This change fixes that and adds a test.