Bump mimalloc v2 (2.2.7) and v3 (3.2.8) submodules#152
Open
eduDorus wants to merge 2 commits intopurpleprotocol:masterfrom
Open
Bump mimalloc v2 (2.2.7) and v3 (3.2.8) submodules#152eduDorus wants to merge 2 commits intopurpleprotocol:masterfrom
eduDorus wants to merge 2 commits intopurpleprotocol:masterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the mimalloc submodules to newer commit versions. These changes ensure that our project uses the latest upstream improvements and bug fixes from the mimalloc memory allocator library.
Dependency updates:
libmimalloc-sys/c_src/mimalloc/v2to commit6a53d72d46a1a641d8e5793db37cb2da60e04192.libmimalloc-sys/c_src/mimalloc/v3to commit7b7fca4b7013d77e356d96e055fec309cb3cbbd6.This pull request updates the
mimallocRust bindings and its sys crate to newer versions, modernizes the codebase to use the latest Rust edition, and improves safety by consistently marking FFI calls asunsafe. It also updates the mimalloc C submodules to newer commits.Dependency and edition updates:
mimalloccrate version to0.1.49and thelibmimalloc-syscrate version to0.1.45in their respectiveCargo.tomlfiles. Both crates now use Rust edition 2024 for improved language features and compatibility. [1] [2]Upstream mimalloc C library updates:
libmimalloc-sys/c_src/mimalloc/v2andlibmimalloc-sys/c_src/mimalloc/v3to newer commits, pulling in upstream improvements and bug fixes. [1] [2]FFI and safety improvements:
unsafe extern "C"inlibmimalloc-sys/src/lib.rsto explicitly signal the need for unsafe usage.GlobalAllocimplementation forMiMallocare wrapped inunsafeblocks for better safety and clarity.