From bc3d152db067510800bc8059e1bf92973b818cdd Mon Sep 17 00:00:00 2001 From: Maksym Arutyunyan Date: Mon, 2 Jun 2025 11:39:07 +0200 Subject: [PATCH] chore: fix compilation warning --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9c5604dc..6f344a3f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,8 +12,8 @@ repository = "https://github.com/dfinity/stable-structures" version = "0.6.8" [dependencies] -canbench-rs = { workspace = true, optional = true } # Optional to benchmark parts of the code. -ic_principal = { workspace = true, default-features = false } +canbench-rs = { workspace = true, optional = true } # Optional to benchmark parts of the code. +ic_principal.workspace = true [dev-dependencies] candid.workspace = true @@ -35,7 +35,7 @@ members = ["benchmarks"] canbench-rs = "0.1.15" candid = "0.10.14" hex = "0.4.3" -ic_principal = "0.1.1" +ic_principal = { version = "0.1.1", default-features = false } ic-cdk = "0.12.1" ic-cdk-macros = "0.8.4" maplit = "1.0.2"