From 3b7b43ae5f92315fd8e2acead6ea777d7057f5a9 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sun, 17 Oct 2021 10:37:30 -0400 Subject: [PATCH] Turn off default-features in chrono where possible. --- crates/tor-dirmgr/Cargo.toml | 2 +- crates/tor-netdoc/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml index 5b618578a..eac3bc364 100644 --- a/crates/tor-dirmgr/Cargo.toml +++ b/crates/tor-dirmgr/Cargo.toml @@ -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" diff --git a/crates/tor-netdoc/Cargo.toml b/crates/tor-netdoc/Cargo.toml index 19040c855..c3985d119 100644 --- a/crates/tor-netdoc/Cargo.toml +++ b/crates/tor-netdoc/Cargo.toml @@ -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"