-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop rustc-serialize dependency #8
Comments
Thanks for the heads-up. This seems an easy change. I will give it a try. Here are some background:
|
Note: This project depends on rust-crypto, which also depends rustc-serialize. I will check if they are planning to drop the dependency. EDIT: I found this pull request: rust-crypto - Remove rustc-serialize usage #415 |
Yes, here is the PR to drop rustc-serialize in rust-crypto DaGenix/rust-crypto#415. But there have been 2 commits to rust-crypto in the past 12 months so it looks abandoned to me. Maybe consider a different library? |
Uh, ok. We can use any crate that provides md5 digest calculation. We use it to verify the data in storage file is not corrupted. (I am not sure if md5 is the best. I need a fast and reliable digest algorithm to check data corruption) |
Opened #9 "Replace MD5 checksum on blob with a safe hasher". |
Drop rustc-serialize dependency (fix #8)
Conclusion
|
It has been deprecated: announcement.
Is there any functionality you would require from another library before this would be possible?
The text was updated successfully, but these errors were encountered: