mrhooray / crc-rs

Rust implementation of CRC(16, 32, 64) with support of various standards

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`Digest<'a, W>` is no longer `Clone` in crc-3.2.0

daniestevez opened this issue · comments

Before crc-3.2.0, Digest<'a, W> was Clone if W: Clone + Width. In crc-3.2.0, Digest<'a, W> = Digest<'a, W, Table<1>>, which is not Clone because Table<const L: usize> is never Clone. This is an API-breaking change.

Thanks for reporting, pushed 3.2.1 with the fix.

Thanks for fixing this!