Turn off default-features in chrono where possible.

This commit is contained in:
Nick Mathewson 2021-10-17 10:37:30 -04:00
parent 37234548e2
commit 3b7b43ae5f
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ tor-rtcompat = { path="../tor-rtcompat", version="0.0.0" }
anyhow = "1.0.38"
async-trait = "0.1.48"
base64 = "0.13.0"
chrono = "0.4.19"
chrono = { version = "0.4.19", default-features = false }
derive_builder = "0.10.2"
digest = "0.9.0"
futures = "0.3.13"

View File

@ -22,7 +22,7 @@ tor-checkable = { path="../tor-checkable", version="0.0.0" }
base64 = "0.13.0"
bitflags = "1.2.1"
chrono = "0.4.19"
chrono = { version = "0.4.19", default-features = false }
digest = "0.9.0"
hex = "0.4.3"
once_cell = "1.7.2"