From d6aee778e0fd00217e405e2b522df6e35bd27a1f Mon Sep 17 00:00:00 2001 From: itsjunetime Date: Thu, 25 Jun 2026 16:23:37 -0500 Subject: [PATCH] next iteration of mimalloc windows attempts, plus verbose test compilation --- .github/workflows/rust.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5b3c84e..38be32a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -58,7 +58,7 @@ jobs: - name: Clippy run: cargo clippy --locked -- -D warnings - name: Tests - run: cargo test --locked + run: cargo test --verbose --locked - name: Check fmt run: cargo fmt -- --check - name: Run benchmarks as tests diff --git a/Cargo.toml b/Cargo.toml index 43a1510..0d751a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] } futures-util = { version = "0.3.30", default-features = false } flume = { version = "0.12.0", default-features = false, features = ["async"] } xflags = "0.4.0-pre.2" -mimalloc = { git = "https://github.com/itsjunetime/mimalloc_rust.git", rev = "415474d8d035ff8d39ad0f2ceed98ef48d7456e3", features = [ "debug_in_debug" ] } +mimalloc = { git = "https://github.com/itsjunetime/mimalloc_rust.git", rev = "3b0dda87caa5fbf4df1f60063a32b1462ddb5a85", features = [ "debug_in_debug" ] } nix = { version = "0.31.0", features = ["signal"] } mupdf = { git = "https://github.com/messense/mupdf-rs.git", rev = "d7441b9998c92135e329559c0aa71d9dc92cf4de", default-features = false, features = ["svg", "system-fonts", "img"] } rayon = { version = "1", default-features = false }