chore: bump version to v0.5.2

- chore(deps): bump all dependencies to their latest versions
- chore: fix a clippy error
This commit is contained in:
Boyu Yang
2022-10-20 10:24:26 +08:00
parent dfa58c4b43
commit fbb525c76b
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ pub struct MMR<T, M, S> {
merge: PhantomData<M>,
}
impl<'a, T: Clone + PartialEq + Debug, M: Merge<Item = T>, S: MMRStore<T>> MMR<T, M, S> {
impl<T: Clone + PartialEq + Debug, M: Merge<Item = T>, S: MMRStore<T>> MMR<T, M, S> {
pub fn new(mmr_size: u64, store: S) -> Self {
MMR {
mmr_size,