mimalloc_rust icon indicating copy to clipboard operation
mimalloc_rust copied to clipboard

A Rust wrapper over Microsoft's MiMalloc memory allocator

Results 38 mimalloc_rust issues
Sort by recently updated
recently updated
newest added

Thanks for making this! I notice the `dealloc` function takes an unused `_layout` parameter (in order to satisfy the allocator trait, which makes sense) - but I have a use...

I created a sample repo with does reproduce the problem under Linux https://github.com/dragonnn/mimalloc-rust-box-pin-crash If it uses nightly-2023-05-26 with is the first version that started crashing my bigger project where I...

Environment : * MacBook Pro M1 on macOS Ventura 13.4.1 * rusts 1.70.0 * Target : x86_64-pc-windows-msvc I have two symbolic links : lrwxr-xr-x 1 root wheel 35 Jul 15...

Hello, Using that Dockerfile : ``` FROM rust:1.68 RUN rustup target add arm-unknown-linux-musleabihf RUN apt update && apt install -y musl-tools musl-dev binutils-arm-linux-gnueabihf gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu libcap2-bin RUN ln -s /usr/bin/arm-linux-gnueabihf-gcc...

Using 0.1.32 and earlier I would get results like this: ``` Memory usage stats: heap stats: peak total freed current unit count reserved: 8.5 GiB 8.5 GiB 164.0 MiB 8.4...

I use `mimalloc` in one of my projects to build Rust-powered Python packages. I noticed that after the recent update from 0.1.39 to 0.1.41, the `libmimalloc-sys` build has failed with...

Using cargo-goggles I discovered that libmimalloc-sys has differences between the version on crates.io and the version in the repo at the tag v0.1.35: * extended.rs differs (more code in repo)...

Right now, the current version that is included points to a commit to the `dev-slice` branch from April of 2023, rather than a recently released version. This updates the reference...

Allow the `rust` sections to be tested. For the `toml` section, specify the language as `toml` such that it doesn't get tested if a developer runs the tests as `cargo...