From 5feece187cd0dd81f6a7f34288f4b3e812785f04 Mon Sep 17 00:00:00 2001 From: ilbertt Date: Thu, 11 Apr 2024 14:35:53 +0200 Subject: [PATCH] chore: bump canister_sig_util to latest version --- Cargo.lock | 13 ++++++++++++- src/ic_backend/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fbfe008..b2f7644 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,12 +333,13 @@ dependencies = [ [[package]] name = "canister_sig_util" version = "0.1.0" -source = "git+https://github.com/dfinity/internet-identity?tag=release-2024-03-22#f0dc1b608ba95234a2d11393841db96e1fd9addc" +source = "git+https://github.com/dfinity/internet-identity?tag=release-2024-04-05#cdf3ffd7358d775e1da31183abe2b54383187579" dependencies = [ "candid", "hex", "ic-cdk 0.12.0", "ic-certification", + "ic-representation-independent-hash", "lazy_static", "serde", "serde_bytes", @@ -1206,6 +1207,16 @@ dependencies = [ "sha2 0.10.8", ] +[[package]] +name = "ic-representation-independent-hash" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4d9c969c80e9b445255341da79772680f503ef856b95b3ddf162b41d096df1f" +dependencies = [ + "leb128", + "sha2 0.10.8", +] + [[package]] name = "ic-stable-structures" version = "0.6.3" diff --git a/src/ic_backend/Cargo.toml b/src/ic_backend/Cargo.toml index df0b1bc..a91e813 100644 --- a/src/ic_backend/Cargo.toml +++ b/src/ic_backend/Cargo.toml @@ -14,7 +14,7 @@ ic-cdk = "0.13" ic-cdk-timers = "0.7" ic-stable-structures = "0.6" ic-certified-map = "0.4" -canister_sig_util = { git = "https://github.com/dfinity/internet-identity", tag = "release-2024-03-22" } +canister_sig_util = { git = "https://github.com/dfinity/internet-identity", tag = "release-2024-04-05" } serde = "1.0" serde_json = "1.0"