Skip to content

Commit b5c3f4c

Browse files
committed
Update dlmalloc for libstd
This pulls in a fix for wasm64 to work correctly with this dlmalloc
1 parent 88f1bf7 commit b5c3f4c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1028,9 +1028,9 @@ dependencies = [
10281028

10291029
[[package]]
10301030
name = "dlmalloc"
1031-
version = "0.2.1"
1031+
version = "0.2.2"
10321032
source = "registry+https://github.com/rust-lang/crates.io-index"
1033-
checksum = "332570860c2edf2d57914987bf9e24835425f75825086b6ba7d1e6a3e4f1f254"
1033+
checksum = "96d075454d918d7358fcd2290dcb4c3ae7bc735388dd1b31ccee1426c1106d8a"
10341034
dependencies = [
10351035
"compiler_builtins",
10361036
"libc",

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ features = ['read_core', 'elf', 'macho', 'pe', 'unaligned', 'archive']
3636
rand = "0.7"
3737

3838
[target.'cfg(any(all(target_family = "wasm", not(target_os = "emscripten")), all(target_vendor = "fortanix", target_env = "sgx")))'.dependencies]
39-
dlmalloc = { version = "0.2.1", features = ['rustc-dep-of-std'] }
39+
dlmalloc = { version = "0.2.2", features = ['rustc-dep-of-std'] }
4040

4141
[target.x86_64-fortanix-unknown-sgx.dependencies]
4242
fortanix-sgx-abi = { version = "0.3.2", features = ['rustc-dep-of-std'] }

0 commit comments

Comments
 (0)