From 6b5b0cd5d8f2f0751909f21ae82d11b1e3eaff86 Mon Sep 17 00:00:00 2001 From: Diogo Mendes Matsubara Date: Mon, 3 Mar 2025 16:50:41 +0100 Subject: [PATCH] fix: pin things correctly with = rather than ~ --- ci/valgrind-check/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/valgrind-check/Cargo.toml b/ci/valgrind-check/Cargo.toml index 79caf6aac..8f239ee97 100644 --- a/ci/valgrind-check/Cargo.toml +++ b/ci/valgrind-check/Cargo.toml @@ -22,8 +22,8 @@ categories = ["network-programming"] description = "Internal crate for zenoh." [dependencies] -base64ct = "~1.6.0" -zerofrom = "~0.1.5" +base64ct = "=1.6.0" +zerofrom = "=0.1.5" tokio = { version = "1.35.1", features = ["rt-multi-thread", "time", "io-std"] } zenoh = { path = "../../zenoh/" } zenoh-runtime = { path = "../../commons/zenoh-runtime/" }