-
Notifications
You must be signed in to change notification settings - Fork 33
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
Consider releasing an update to fix chrono issue #90
Comments
Hey @nbigaouette-eai. Since the API has dramatically changed from |
Yes, I'm already pointing to the develop branch. The issue is that the version on crates.io is useless. This was an unfortunate screwup from the chrono crate where a version was released that did not respect symver; the increment was on the patch version (0.3.0 -> 0.3.1) but the API broke so it should have been released as a 0.4.0. Their 0.4.0 should have been a 0.5.0 instead... As such, the authors decided to yank 0.3.1 from crates.io. And since chrono 0.3.1 is yanked from crates.io, rust-tuf 0.1.6 cannot be used anymore! I hoped a new version of rust-tuf could have been released, just to fix this issue. So if chrono 0.3.1 and 0.4.0 have the same API, a hypothetical version bump from 0.1.6 to 0.1.7 (or 0.2?) could be made which includes just this fix and released to crates.io to solve this problem. I understand rust-tuf is unsupported, but without a version bump on crates.io the package is useless... :( |
Bumping rust-tuf's dependency to chrono 0.4.0 fails:
So their API changed... I'll see what I can do. |
|
I pushed a new version to crates.io. |
rust-tuf version 0.1.6 depends on chrono 0.3.1, which has been yanked due to wrong symver versioning.
This makes rust-tuf version 0.1.6 impossible to use:
The only way for now is to use rust-tuf from git's branch
develop
.Could a new version of rust-tuf be released to crates.io?
Thanks!
The text was updated successfully, but these errors were encountered: