From 59c9873dc558d497b1c9501555f5637364fd7274 Mon Sep 17 00:00:00 2001
From: Jake Shadle
Date: Mon, 26 Jun 2023 13:50:36 +0200
Subject: [PATCH] Avoid pulling in chrono
---
Cargo.toml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index 56698653..714c48b5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -32,7 +32,8 @@ nix = { version = "0.26", default-features = false, features = [
"user",
] }
# Used for parsing procfs info.
-procfs-core = "0.16.0-RC1"
+# default-features is disabled since it pulls in chrono
+procfs-core = { version = "0.16.0-RC1", default-features = false }
[target.'cfg(target_os = "windows")'.dependencies]
bitflags = "2.0"