From 8ae8e2f8b9999de1f6b25cb23fe1e29946dd6ad9 Mon Sep 17 00:00:00 2001 From: nemo Date: Tue, 16 Nov 2021 14:25:08 -0500 Subject: [PATCH] fix: update heim dep to (current) master branch (#1539) --- fil-proofs-tooling/Cargo.toml | 2 +- fil-proofs-tooling/src/metadata.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fil-proofs-tooling/Cargo.toml b/fil-proofs-tooling/Cargo.toml index c652f8301..94984e54c 100644 --- a/fil-proofs-tooling/Cargo.toml +++ b/fil-proofs-tooling/Cargo.toml @@ -30,7 +30,7 @@ rand = "0.8" tempfile = "3.0.8" cpu-time = "1.0.0" git2 = "0.13.6" -heim = { git = "https://github.com/heim-rs/heim", rev = "e22e235", features = ["host", "memory", "cpu"] } +heim = { git = "https://github.com/heim-rs/heim", rev = "b292f15", features = ["host", "memory", "cpu"] } async-std = "1.6" blake2s_simd = "0.5.6" fil_logger = "0.1" diff --git a/fil-proofs-tooling/src/metadata.rs b/fil-proofs-tooling/src/metadata.rs index 510de888b..c5910bd63 100644 --- a/fil-proofs-tooling/src/metadata.rs +++ b/fil-proofs-tooling/src/metadata.rs @@ -121,7 +121,7 @@ impl SystemMetadata { processor_features: features, processor_cores_logical: cpu_logical, processor_cores_physical: cpu_physical.unwrap_or_default(), - memory_total_bytes: memory.total().get::(), + memory_total_bytes: memory.total().get::(), }) } }