fix: Remove default chrono dep on time for sqlx-cli (#2089)

chrono v0.4.19 includes time 0.1 via default feature flag oldtime.
time 0.1 is deprecated and flagged for: https://rustsec.org/advisories/RUSTSEC-2020-0071
This commit is contained in:
Travis Whitehead 2022-09-12 18:08:39 -07:00 committed by GitHub
parent 5e56da87e0
commit 09717e1b83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ sqlx = { version = "0.6.1", path = "..", default-features = false, features = [
] }
futures = "0.3.19"
clap = { version = "3.1.0", features = ["derive", "env"] }
chrono = "0.4.19"
chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
anyhow = "1.0.52"
url = { version = "2.2.2", default-features = false }
async-trait = "0.1.52"