From 198119466b91951145736234cc69483f20885700 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Thu, 18 Feb 2016 19:21:24 +0300 Subject: [PATCH] forking heapsize --- Cargo.lock | 7 ++++++- util/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f895850a7..05f674a69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ dependencies = [ "elastic-array 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "eth-secp256k1 0.5.4 (git+https://github.com/arkpar/rust-secp256k1.git)", - "heapsize 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.2 (git+https://github.com/nikvolf/heapsize)", "igd 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "json-tests 0.1.0", @@ -262,6 +262,11 @@ name = "glob" version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "heapsize" +version = "0.3.2" +source = "git+https://github.com/nikvolf/heapsize#7913872a4f928a49659df52e48dea69d8a2376bf" + [[package]] name = "heapsize" version = "0.3.2" diff --git a/util/Cargo.toml b/util/Cargo.toml index a339d10e1..ea618ed45 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -20,7 +20,7 @@ lazy_static = "0.1" eth-secp256k1 = { git = "https://github.com/arkpar/rust-secp256k1.git" } rust-crypto = "0.2.34" elastic-array = "0.4" -heapsize = "0.3" +heapsize = { git = "https://github.com/nikvolf/heapsize" } itertools = "0.4" crossbeam = "0.2" slab = { git = "https://github.com/arkpar/slab.git" }