performance improvements #342

Merged
lx merged 21 commits from lx-perf-improvements into main 2022-09-12 14:38:44 +00:00
1 changed files with 6 additions and 0 deletions
Showing only changes of commit 0176da3ad2 - Show all commits

View File

@ -56,3 +56,9 @@ impl<D: Digest> AsyncHasher<D> {
self.task.await.unwrap()
}
}
impl<D: Digest> Default for AsyncHasher<D> {
fn default() -> Self {
Self::new()
}
}