Allow the allocator to track the heap changes. (#9291)

* Allow the allocator to track the heap changes.

* fix build

* review comments

* Update client/allocator/Cargo.toml

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

* Update client/allocator/Cargo.toml

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
Kian Paimani
2021-07-07 07:32:57 +02:00
committed by GitHub
parent fb9baeb70b
commit 9cd04f3559
3 changed files with 42 additions and 18 deletions
+1 -2
View File
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
sp-std = { version = "3.0.0", path = "../../primitives/std", default-features = false }
sp-core = { version = "3.0.0", path = "../../primitives/core", default-features = false }
sp-wasm-interface = { version = "3.0.0", path = "../../primitives/wasm-interface", default-features = false }
log = { version = "0.4.11", optional = true }
log = "0.4.11"
thiserror = { version = "1.0.21" }
[features]
@@ -26,5 +26,4 @@ std = [
"sp-std/std",
"sp-core/std",
"sp-wasm-interface/std",
"log",
]