From 413819facd1b59b80a417101ff5913d0c92bdebd Mon Sep 17 00:00:00 2001 From: xermicus Date: Tue, 27 May 2025 14:19:24 +0200 Subject: [PATCH] do not use wildcard dependency in resolc crate (#335) Do not use wildcard dependency in resolc crate. No sure why the publish dry-run doesn't catch this. --------- Signed-off-by: Cyrill Leutwiler --- crates/resolc/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/resolc/Cargo.toml b/crates/resolc/Cargo.toml index aceb34a..2ff26dc 100644 --- a/crates/resolc/Cargo.toml +++ b/crates/resolc/Cargo.toml @@ -37,7 +37,7 @@ revive-solc-json-interface = { workspace = true, features = ["resolc"] } revive-yul = { workspace = true } [target.'cfg(target_env = "musl")'.dependencies] -mimalloc = { version = "*", default-features = false } +mimalloc = { version = "0.1.46", default-features = false } [target.'cfg(target_os = "emscripten")'.dependencies] libc = { workspace = true }