From 80f4f422fc89e926c6e6ce3781aedd6257590285 Mon Sep 17 00:00:00 2001 From: debris Date: Thu, 18 Feb 2016 15:17:26 +0100 Subject: [PATCH] updated heapsizeof --- Cargo.lock | 9 +++------ ethcore/Cargo.toml | 2 +- util/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 32a6326f7..f895850a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -175,7 +175,7 @@ dependencies = [ "env_logger 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "ethash 0.9.99", "ethcore-util 0.9.99", - "heapsize 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -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.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "heapsize 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "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", @@ -264,11 +264,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "heapsize" -version = "0.2.5" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "hpack" diff --git a/ethcore/Cargo.toml b/ethcore/Cargo.toml index 5298a253f..d8df6455a 100644 --- a/ethcore/Cargo.toml +++ b/ethcore/Cargo.toml @@ -11,7 +11,7 @@ log = "0.3" env_logger = "0.3" rustc-serialize = "0.3" rocksdb = "0.3" -heapsize = "0.2.0" +heapsize = "0.3" rust-crypto = "0.2.34" time = "0.1" ethcore-util = { path = "../util" } diff --git a/util/Cargo.toml b/util/Cargo.toml index 8ca86d26b..a339d10e1 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.2" +heapsize = "0.3" itertools = "0.4" crossbeam = "0.2" slab = { git = "https://github.com/arkpar/slab.git" }