From 6e5b958912be6e8c3e64d94c8b30d565847ced7f Mon Sep 17 00:00:00 2001
From: Matthias Schiffer <mschiffer@universe-factory.net>
Date: Sun, 16 Mar 2025 12:17:07 +0100
Subject: [PATCH] default-alloc: fix wildcard dependency

---
 crates/default-alloc/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crates/default-alloc/Cargo.toml b/crates/default-alloc/Cargo.toml
index 40f9e7e..b03a871 100644
--- a/crates/default-alloc/Cargo.toml
+++ b/crates/default-alloc/Cargo.toml
@@ -11,7 +11,7 @@ repository.workspace = true
 tikv-jemallocator = { version = "0.6.0", optional = true }
 
 [target.'cfg(target_env = "musl")'.dependencies]
-tikv-jemallocator = "*"
+tikv-jemallocator = "0.6.0"
 
 [features]
 jemalloc = ["dep:tikv-jemallocator"]