From 0597108f7de2520d91d2c1dbc3ed3ad8efd3d673 Mon Sep 17 00:00:00 2001 From: ilbertt Date: Thu, 18 Dec 2025 16:15:46 +0100 Subject: [PATCH] build: update `candid_parser` to v0.2.4 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cba13caa2..52906507b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ # UNRELEASED +## Dependencies + +### Candid + +Updated candid_parser to 0.2.4. + # 0.30.1 ### feat: asset sync now prints the target asset canister state hash in `--verbose` mode diff --git a/Cargo.lock b/Cargo.lock index 221b97af1d..46cf27d959 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -844,9 +844,9 @@ dependencies = [ [[package]] name = "candid_parser" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00868a9aa53a18bf15b356ef1fd013ec71797e75bc17b46573510585ae6daa28" +checksum = "75daa0ef508c92f38dd0eaaaae7d13f317b68ab73c875068257348574a6bcce2" dependencies = [ "anyhow", "arbitrary", @@ -1636,7 +1636,7 @@ dependencies = [ "byte-unit", "bytes", "candid", - "candid_parser 0.2.2", + "candid_parser 0.2.4", "cargo_metadata", "chrono", "ci_info", @@ -3112,7 +3112,7 @@ dependencies = [ "anyhow", "base64 0.13.1", "candid", - "candid_parser 0.2.2", + "candid_parser 0.2.4", "hex", "ic-cdk", "ic-certification 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 6827bcdb02..b322d2efbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ future_not_send = "warn" [workspace.dependencies] candid = "0.10.18" -candid_parser = "0.2.2" +candid_parser = "0.2.4" dfx-core = { path = "src/dfx-core", version = "0.2.0" } ic-agent = "0.44.2" ic-asset = { path = "src/canisters/frontend/ic-asset", version = "0.25.0" }