You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because sqlx specifies a dependency on chrono 0.4.22 but actually depends on 0.4.34 (chronotope/chrono@ac383d5). Bumping chrono dependency in my project resolved this but I should not need to do that
Minimal Reproduction
Info
SQLx version: 0.7.4
SQLx features enabled: postgres, chrono, runtime-tokio
Database server and version: Postgres
Operating system: mac os
rustc --version: 1.75
The text was updated successfully, but these errors were encountered:
Ah, this is the trap of just running cargo update in a library. It updated chrono locally and for CI, and introduced deprecation warnings that I was then forced to fix because of -D warnings.
Bug Description
Trying to update to 0.7.4 and seeing:
This is because sqlx specifies a dependency on chrono 0.4.22 but actually depends on 0.4.34 (chronotope/chrono@ac383d5). Bumping chrono dependency in my project resolved this but I should not need to do that
Minimal Reproduction
Info
rustc --version
: 1.75The text was updated successfully, but these errors were encountered: