From 3195a664851751be2d35fa6e09d1ec190e1d5082 Mon Sep 17 00:00:00 2001 From: nikolamilosa Date: Mon, 2 Mar 2026 14:33:03 +0000 Subject: [PATCH 1/3] updating refs --- Cargo.lock | 943 +++++++++++------- Cargo.toml | 106 +- MODULE.bazel | 2 +- docker/Dockerfile | 2 +- ic-revisions.json | 4 +- pylib/ic_admin.py | 2 +- rs/cli/src/commands/proposals/mod.rs | 3 + .../src/commands/subnet/set_authorization.rs | 1 + rs/cli/src/commands/update_default_subnets.rs | 1 + rs/cli/src/qualification/upgrade_subnets.rs | 2 + rs/cli/src/qualification/util.rs | 1 + rs/ic-management-backend/src/lazy_registry.rs | 1 + rs/ic-management-backend/src/registry.rs | 1 + .../src/server_handlers/dto.rs | 4 +- 14 files changed, 645 insertions(+), 428 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e240f1431..e1262756b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -182,9 +182,9 @@ dependencies = [ [[package]] name = "actix-web-prom" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56a34f1825c3ae06567a9d632466809bbf34963c86002e8921b64f32d48d289d" +checksum = "a7eb266b4c692a4a7e68429fcbe4eb3bd55c053f6d84c0522dc83df22395edf6" dependencies = [ "actix-web", "futures-core", @@ -443,6 +443,18 @@ dependencies = [ "futures-core", ] +[[package]] +name = "async-channel" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" +dependencies = [ + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + [[package]] name = "async-compression" version = "0.4.33" @@ -526,6 +538,29 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" +[[package]] +name = "attestation" +version = "0.0.0" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" +dependencies = [ + "candid", + "der", + "getrandom 0.2.16", + "hex", + "ic-interfaces-registry", + "ic-protobuf", + "ic-registry-client-helpers", + "ic-types", + "ic-utils 0.9.0", + "itertools 0.12.1", + "prost", + "rand 0.8.5", + "serde", + "sev", + "sha2 0.10.9", + "thiserror 2.0.17", +] + [[package]] name = "autocfg" version = "1.5.0" @@ -561,9 +596,9 @@ dependencies = [ [[package]] name = "axum" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871" +checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" dependencies = [ "axum-core 0.5.5", "base64 0.22.1", @@ -636,11 +671,11 @@ dependencies = [ [[package]] name = "axum-otel-metrics" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e5c40e35dba9c7ce25a6ca0baf5e66bed2612fc92f7b7acfee7611121d9219a" +checksum = "dbac42c74b691b2a03a2ddece369c85c2b9ca90fc9109798f41038da7ac9f8fd" dependencies = [ - "axum 0.8.6", + "axum 0.8.8", "futures-util", "http 1.3.1", "http-body", @@ -774,6 +809,26 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" +[[package]] +name = "bitfield" +version = "0.19.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21ba6517c6b0f2bf08be60e187ab64b038438f22dd755614d8fe4d4098c46419" +dependencies = [ + "bitfield-macros", +] + +[[package]] +name = "bitfield-macros" +version = "0.19.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f48d6ace212fdf1b45fd6b566bb40808415344642b76c3224c07c8df9da81e97" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + [[package]] name = "bitflags" version = "1.3.2" @@ -988,9 +1043,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.10.1" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] name = "bytestring" @@ -1026,6 +1081,19 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "cached" +version = "0.56.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "801927ee168e17809ab8901d9f01f700cd7d8d6a6527997fee44e4b0327a253c" +dependencies = [ + "ahash 0.8.12", + "hashbrown 0.15.5", + "once_cell", + "thiserror 2.0.17", + "web-time", +] + [[package]] name = "camino" version = "1.2.1" @@ -1037,9 +1105,9 @@ dependencies = [ [[package]] name = "candid" -version = "0.10.20" +version = "0.10.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8037a01ec09d6c06883a38bad4f47b8d06158ad360b841e0ae5707c9884dfaf6" +checksum = "601b519700ec333a2a2c7eb3e8e1eca89177055e3e1fb24ca42cbbb025986696" dependencies = [ "anyhow", "binread", @@ -1061,7 +1129,7 @@ dependencies = [ [[package]] name = "candid-utils" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "candid_parser", @@ -1069,9 +1137,9 @@ dependencies = [ [[package]] name = "candid_derive" -version = "0.10.20" +version = "0.10.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb45f4d5eff3805598ee633dd80f8afb306c023249d34b5b7dfdc2080ea1df2e" +checksum = "f195a40cd3d199191fc8b534165fadd78c08a1f9666222addaf9f58593002a73" dependencies = [ "lazy_static", "proc-macro2", @@ -1686,42 +1754,36 @@ dependencies = [ [[package]] name = "cycles-minting-canister" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", - "base64 0.13.1", "build-info", "build-info-build", "candid", "dfn_protobuf", "ic-base-types", "ic-cdk", - "ic-certified-map", "ic-crypto-tree-hash", "ic-dummy-getrandom-for-wasm", "ic-http-types", "ic-ledger-core", "ic-management-canister-types-private", "ic-metrics-encoder", - "ic-nervous-system-clients", "ic-nervous-system-common", "ic-nervous-system-common-build-metadata", "ic-nervous-system-governance", "ic-nervous-system-time-helpers", "ic-nns-common", "ic-nns-constants", - "ic-protobuf", "ic-types", "ic-xrc-types", "icp-ledger", "icrc-ledger-types", "lazy_static", "on_wire", - "prost", "rand 0.8.5", "serde", "serde_cbor", - "sha2 0.10.9", "yansi 0.5.1", ] @@ -1910,6 +1972,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ "const-oid", + "der_derive", + "flagset", "pem-rfc7468", "zeroize", ] @@ -1928,6 +1992,17 @@ dependencies = [ "rusticata-macros", ] +[[package]] +name = "der_derive" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + [[package]] name = "deranged" version = "0.5.5" @@ -1986,7 +2061,7 @@ dependencies = [ [[package]] name = "dfn_candid" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "dfn_core", @@ -1999,7 +2074,7 @@ dependencies = [ [[package]] name = "dfn_core" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "on_wire", @@ -2008,7 +2083,7 @@ dependencies = [ [[package]] name = "dfn_http" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "dfn_candid", @@ -2020,7 +2095,7 @@ dependencies = [ [[package]] name = "dfn_http_metrics" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "dfn_candid", "dfn_core", @@ -2033,7 +2108,7 @@ dependencies = [ [[package]] name = "dfn_protobuf" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "on_wire", "prost", @@ -2091,7 +2166,16 @@ version = "5.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" dependencies = [ - "dirs-sys", + "dirs-sys 0.4.1", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys 0.5.0", ] [[package]] @@ -2112,10 +2196,22 @@ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" dependencies = [ "libc", "option-ext", - "redox_users", + "redox_users 0.4.6", "windows-sys 0.48.0", ] +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users 0.5.2", + "windows-sys 0.61.2", +] + [[package]] name = "dirs-sys-next" version = "0.1.2" @@ -2123,7 +2219,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", - "redox_users", + "redox_users 0.4.6", "winapi", ] @@ -2181,7 +2277,7 @@ dependencies = [ "cycles-minting-canister", "decentralization", "dialoguer", - "dirs", + "dirs 5.0.1", "dotenv", "edit", "flate2", @@ -2333,6 +2429,7 @@ dependencies = [ "ff", "generic-array", "group", + "hkdf", "pem-rfc7468", "pkcs8", "rand_core 0.6.4", @@ -2491,10 +2588,10 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "fe-derive" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "hex", - "num-bigint-dig", + "num-bigint-dig 0.9.1", "num-traits", "proc-macro2", "quote", @@ -2547,6 +2644,12 @@ version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" +[[package]] +name = "flagset" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe" + [[package]] name = "flate2" version = "1.1.5" @@ -2710,7 +2813,7 @@ version = "0.7.3" dependencies = [ "anyhow", "async-trait", - "axum 0.8.6", + "axum 0.8.8", "axum-otel-metrics", "chrono", "clap", @@ -2863,6 +2966,17 @@ dependencies = [ "serde", ] +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.1.5", +] + [[package]] name = "hashbrown" version = "0.16.0" @@ -3130,7 +3244,7 @@ dependencies = [ [[package]] name = "ic-adapter-metrics-client" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "hyper-util", "ic-adapter-metrics-service", @@ -3146,7 +3260,7 @@ dependencies = [ [[package]] name = "ic-adapter-metrics-service" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "prost", "prost-build", @@ -3161,7 +3275,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "820d65a05258f2fdff326c65561b1ddc7ec54e5d43a4b1203b25eb83075c83d4" dependencies = [ "arc-swap", - "async-channel", + "async-channel 1.9.0", "async-lock", "async-trait", "async-watch", @@ -3178,7 +3292,7 @@ dependencies = [ "http-body", "ic-certification 3.0.3", "ic-transport-types 0.39.3", - "ic-verify-bls-signature", + "ic-verify-bls-signature 0.5.0", "k256", "leb128", "p256", @@ -3204,17 +3318,18 @@ dependencies = [ [[package]] name = "ic-agent" -version = "0.40.1" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4832787330765f1bdf67123928855390b7f0b5a16dd0a7ea67674b7d3178ffd0" +checksum = "20a6173286a80fc478462fc45de42faf37a79b0109a489743aeffb3e4a2fc772" dependencies = [ "arc-swap", - "async-channel", + "async-channel 2.5.0", "async-lock", "async-trait", "async-watch", "backoff", - "cached 0.52.0", + "bytes", + "cached 0.56.0", "candid", "der", "ecdsa", @@ -3224,9 +3339,11 @@ dependencies = [ "hex", "http 1.3.1", "http-body", + "http-body-util", "ic-certification 3.0.3", - "ic-transport-types 0.40.1", - "ic-verify-bls-signature", + "ic-ed25519 0.5.0", + "ic-transport-types 0.45.0", + "ic-verify-bls-signature 0.6.0", "k256", "leb128", "p256", @@ -3242,7 +3359,6 @@ dependencies = [ "serde_cbor", "serde_repr", "sha2 0.10.9", - "simple_asn1", "stop-token", "thiserror 2.0.17", "time", @@ -3254,7 +3370,7 @@ dependencies = [ [[package]] name = "ic-base-types" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "byte-unit", "bytes", @@ -3274,9 +3390,9 @@ dependencies = [ [[package]] name = "ic-btc-interface" -version = "0.2.3" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb974b1626d8a45dad7d1e2383829c6b08c5fd53b42d9f0938a51f2f0e057c7e" +checksum = "4209c650d166815b01336cbbab6310f44895a0fa6571a952b6a84097e5fd87ae" dependencies = [ "candid", "datasize", @@ -3287,10 +3403,10 @@ dependencies = [ [[package]] name = "ic-btc-replica-types" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", "ic-interfaces-adapter-client", "ic-protobuf", "serde", @@ -3300,7 +3416,7 @@ dependencies = [ [[package]] name = "ic-canister-client" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "backoff", "futures-util", @@ -3309,8 +3425,6 @@ dependencies = [ "hyper-rustls", "hyper-util", "ic-canister-client-sender", - "ic-canonical-state", - "ic-certification 0.9.0", "ic-crypto-tree-hash", "ic-management-canister-types-private", "ic-protobuf", @@ -3320,21 +3434,19 @@ dependencies = [ "itertools 0.12.1", "prost", "rustls", - "serde", "serde_cbor", "tokio", "tower 0.5.2", - "tree-deserializer", "url", ] [[package]] name = "ic-canister-client-sender" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", - "ic-ed25519", + "ic-ed25519 0.6.0", "ic-secp256k1", "ic-types", "rand 0.8.5", @@ -3344,7 +3456,7 @@ dependencies = [ [[package]] name = "ic-canister-log" version = "0.2.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "serde", ] @@ -3352,7 +3464,7 @@ dependencies = [ [[package]] name = "ic-canister-profiler" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-metrics-encoder", "ic0", @@ -3403,13 +3515,13 @@ dependencies = [ [[package]] name = "ic-canonical-state" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-canonical-state-tree-hash", "ic-certification-version", "ic-crypto-tree-hash", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", "ic-protobuf", "ic-registry-routing-table", "ic-registry-subnet-type", @@ -3427,7 +3539,7 @@ dependencies = [ [[package]] name = "ic-canonical-state-tree-hash" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-crypto-tree-hash", "itertools 0.12.1", @@ -3445,7 +3557,7 @@ dependencies = [ "candid", "ic-cdk-executor", "ic-cdk-macros", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "ic-management-canister-types", "ic0", "pin-project-lite", @@ -3493,7 +3605,7 @@ dependencies = [ [[package]] name = "ic-certification" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "hex", "ic-crypto-tree-hash", @@ -3520,7 +3632,7 @@ dependencies = [ [[package]] name = "ic-certification-version" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "strum 0.26.3", "strum_macros 0.26.4", @@ -3540,7 +3652,7 @@ dependencies = [ [[package]] name = "ic-config" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-protobuf", @@ -3555,47 +3667,15 @@ dependencies = [ [[package]] name = "ic-crypto-interfaces-sig-verification" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-types", ] -[[package]] -name = "ic-crypto-internal-basic-sig-der-utils" -version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" -dependencies = [ - "hex", - "ic-types", - "simple_asn1", -] - -[[package]] -name = "ic-crypto-internal-basic-sig-ed25519" -version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" -dependencies = [ - "base64 0.13.1", - "curve25519-dalek", - "hex", - "ic-crypto-internal-basic-sig-der-utils", - "ic-crypto-internal-seed", - "ic-crypto-internal-types", - "ic-crypto-secrets-containers", - "ic-ed25519", - "ic-protobuf", - "ic-types", - "rand 0.8.5", - "rand_chacha 0.3.1", - "serde", - "simple_asn1", - "zeroize", -] - [[package]] name = "ic-crypto-internal-bls12-381-type" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "cached 0.49.3", "hex", @@ -3614,19 +3694,20 @@ dependencies = [ [[package]] name = "ic-crypto-internal-hmac" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "ic-crypto-internal-sha2", + "ic-crypto-sha2", ] [[package]] name = "ic-crypto-internal-multi-sig-bls12381" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "base64 0.13.1", "hex", "ic-crypto-internal-bls12-381-type", + "ic-crypto-internal-seed", "ic-crypto-internal-types", "ic-crypto-secrets-containers", "ic-crypto-sha2", @@ -3641,7 +3722,7 @@ dependencies = [ [[package]] name = "ic-crypto-internal-seed" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "hex", "ic-crypto-sha2", @@ -3651,18 +3732,10 @@ dependencies = [ "zeroize", ] -[[package]] -name = "ic-crypto-internal-sha2" -version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" -dependencies = [ - "sha2 0.10.9", -] - [[package]] name = "ic-crypto-internal-threshold-sig-bls12381" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "base64 0.13.1", "cached 0.49.3", @@ -3687,7 +3760,7 @@ dependencies = [ [[package]] name = "ic-crypto-internal-threshold-sig-canister-threshold-sig" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "curve25519-dalek", "fe-derive", @@ -3716,9 +3789,8 @@ dependencies = [ [[package]] name = "ic-crypto-internal-types" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "arrayvec 0.7.6", "hex", "ic-protobuf", "phantom_newtype", @@ -3733,16 +3805,16 @@ dependencies = [ [[package]] name = "ic-crypto-node-key-validation" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "hex", "ic-base-types", - "ic-crypto-internal-basic-sig-ed25519", "ic-crypto-internal-multi-sig-bls12381", "ic-crypto-internal-threshold-sig-bls12381", "ic-crypto-internal-threshold-sig-canister-threshold-sig", "ic-crypto-internal-types", "ic-crypto-tls-cert-validation", + "ic-ed25519 0.6.0", "ic-protobuf", "ic-types", "serde", @@ -3751,7 +3823,7 @@ dependencies = [ [[package]] name = "ic-crypto-secrets-containers" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "serde", "zeroize", @@ -3760,15 +3832,15 @@ dependencies = [ [[package]] name = "ic-crypto-sha2" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "ic-crypto-internal-sha2", + "sha2 0.10.9", ] [[package]] name = "ic-crypto-test-utils-reproducible-rng" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "rand 0.8.5", "rand_chacha 0.3.1", @@ -3777,10 +3849,10 @@ dependencies = [ [[package]] name = "ic-crypto-tls-cert-validation" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "hex", - "ic-crypto-internal-basic-sig-ed25519", + "ic-ed25519 0.6.0", "ic-protobuf", "ic-types", "serde", @@ -3790,7 +3862,7 @@ dependencies = [ [[package]] name = "ic-crypto-tree-hash" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-crypto-internal-types", "ic-crypto-sha2", @@ -3803,17 +3875,17 @@ dependencies = [ [[package]] name = "ic-crypto-utils-basic-sig" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", - "ic-ed25519", + "ic-ed25519 0.6.0", "ic-protobuf", ] [[package]] name = "ic-crypto-utils-ni-dkg" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-crypto-internal-types", "ic-protobuf", @@ -3823,7 +3895,7 @@ dependencies = [ [[package]] name = "ic-crypto-utils-threshold-sig" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "base64 0.13.1", "ic-crypto-internal-threshold-sig-bls12381", @@ -3834,18 +3906,19 @@ dependencies = [ [[package]] name = "ic-crypto-utils-threshold-sig-der" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "base64 0.13.1", "ic-crypto-internal-types", "ic-types", + "pem", "simple_asn1", + "thiserror 2.0.17", ] [[package]] name = "ic-dummy-getrandom-for-wasm" version = "0.1.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "getrandom 0.2.16", ] @@ -3853,7 +3926,24 @@ dependencies = [ [[package]] name = "ic-ed25519" version = "0.5.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b73f85d01b7a3d538353050f1eda546f827ffe7f3ffa35f8e80faa8cff1da10" +dependencies = [ + "curve25519-dalek", + "ed25519-dalek", + "hex-literal", + "hkdf", + "ic_principal", + "pem", + "rand 0.8.5", + "thiserror 2.0.17", + "zeroize", +] + +[[package]] +name = "ic-ed25519" +version = "0.6.0" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "curve25519-dalek", "ed25519-dalek", @@ -3880,9 +3970,10 @@ dependencies = [ [[package]] name = "ic-error-types" version = "0.2.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-heap-bytes", + "regex-lite", "serde", "strum 0.26.3", "strum_macros 0.26.4", @@ -3891,7 +3982,7 @@ dependencies = [ [[package]] name = "ic-heap-bytes" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-heap-bytes-derive", @@ -3903,7 +3994,7 @@ dependencies = [ [[package]] name = "ic-heap-bytes-derive" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "darling 0.20.11", "proc-macro2", @@ -3914,11 +4005,9 @@ dependencies = [ [[package]] name = "ic-http-endpoints-async-utils" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-stream", - "byte-unit", - "bytes", "futures", "futures-util", "hyper", @@ -3931,24 +4020,22 @@ dependencies = [ [[package]] name = "ic-http-endpoints-metrics" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "axum 0.8.6", + "axum 0.8.8", "ic-config", "ic-http-endpoints-async-utils", "ic-metrics", "prometheus", "slog", - "thiserror 2.0.17", "tokio", - "tokio-io-timeout", "tower 0.5.2", ] [[package]] name = "ic-http-types" version = "0.1.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "serde", @@ -3958,7 +4045,7 @@ dependencies = [ [[package]] name = "ic-icrc1" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ciborium", @@ -3980,7 +4067,7 @@ dependencies = [ [[package]] name = "ic-icrc1-index-ng" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ciborium", @@ -4007,7 +4094,7 @@ dependencies = [ [[package]] name = "ic-icrc1-ledger" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -4037,12 +4124,12 @@ dependencies = [ [[package]] name = "ic-icrc1-test-utils" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", - "ic-agent 0.40.1", + "ic-agent 0.45.0", "ic-crypto-test-utils-reproducible-rng", - "ic-ed25519", + "ic-ed25519 0.6.0", "ic-icrc1", "ic-ledger-core", "ic-ledger-hash-of", @@ -4062,7 +4149,7 @@ dependencies = [ [[package]] name = "ic-icrc1-tokens-u64" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-ledger-core", @@ -4075,22 +4162,19 @@ dependencies = [ [[package]] name = "ic-interfaces" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-crypto-interfaces-sig-verification", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", "ic-heap-bytes", - "ic-interfaces-state-manager", "ic-management-canister-types-private", "ic-protobuf", "ic-registry-provisional-whitelist", "ic-registry-subnet-type", - "ic-sys", "ic-types", "ic-wasm-types", "phantom_newtype", - "prost", "serde", "strum 0.26.3", "strum_macros 0.26.4", @@ -4101,7 +4185,7 @@ dependencies = [ [[package]] name = "ic-interfaces-adapter-client" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "strum_macros 0.26.4", "thiserror 2.0.17", @@ -4110,28 +4194,17 @@ dependencies = [ [[package]] name = "ic-interfaces-registry" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-types", "prost", "serde", ] -[[package]] -name = "ic-interfaces-state-manager" -version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" -dependencies = [ - "ic-crypto-tree-hash", - "ic-types", - "phantom_newtype", - "thiserror 2.0.17", -] - [[package]] name = "ic-ledger-canister-core" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -4150,7 +4223,7 @@ dependencies = [ [[package]] name = "ic-ledger-core" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-ledger-hash-of", @@ -4164,7 +4237,7 @@ dependencies = [ [[package]] name = "ic-ledger-hash-of" version = "0.1.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "hex", @@ -4174,18 +4247,17 @@ dependencies = [ [[package]] name = "ic-limits" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-logger" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "chrono", "ic-config", "ic-protobuf", "ic-utils 0.9.0", - "serde", "slog", "slog-async", "slog-json", @@ -4206,7 +4278,7 @@ dependencies = [ "clap", "custom_error", "decentralization", - "dirs", + "dirs 5.0.1", "dotenv", "env_logger 0.11.8", "fs-err", @@ -4265,13 +4337,13 @@ dependencies = [ [[package]] name = "ic-management-canister-types-private" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-base-types", "ic-btc-interface", "ic-btc-replica-types", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", "ic-protobuf", "ic-utils 0.9.0", "num-traits", @@ -4313,15 +4385,14 @@ dependencies = [ [[package]] name = "ic-metrics" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "futures", "ic-adapter-metrics-client", "libc", "parking_lot", - "procfs 0.9.1", + "procfs", "prometheus", - "tokio", "tokio-metrics", ] @@ -4334,12 +4405,12 @@ checksum = "8b5c7628eac357aecda461130f8074468be5aa4d258a002032d82d817f79f1f8" [[package]] name = "ic-nervous-system-access-list" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-nervous-system-canisters" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -4355,12 +4426,13 @@ dependencies = [ "icrc-ledger-types", "mockall", "prost", + "rust_decimal", ] [[package]] name = "ic-nervous-system-chunks" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-crypto-sha2", "ic-stable-structures", @@ -4371,14 +4443,13 @@ dependencies = [ [[package]] name = "ic-nervous-system-clients" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", - "dfn_candid", "dfn_core", "ic-base-types", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", "ic-ledger-core", "ic-management-canister-types-private", "ic-nervous-system-canisters", @@ -4396,16 +4467,14 @@ dependencies = [ [[package]] name = "ic-nervous-system-collections-union-multi-map" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-nervous-system-common" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "async-trait", "base64 0.13.1", - "build-info", "build-info-build", "by_address", "bytes", @@ -4416,15 +4485,11 @@ dependencies = [ "ic-http-types", "ic-ledger-core", "ic-metrics-encoder", - "ic-nervous-system-runtime", - "ic-nns-constants", "ic-stable-structures", "icp-ledger", - "icrc-ledger-types", "json5", "lazy_static", "maplit", - "mockall", "num-traits", "priority-queue", "prost", @@ -4436,12 +4501,12 @@ dependencies = [ [[package]] name = "ic-nervous-system-common-build-metadata" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-nervous-system-common-test-keys" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-canister-client-sender", @@ -4454,12 +4519,12 @@ dependencies = [ [[package]] name = "ic-nervous-system-common-validation" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-nervous-system-governance" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-stable-structures", @@ -4471,7 +4536,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-initial-supply" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -4485,7 +4550,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-linear-map" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "rust_decimal", ] @@ -4493,12 +4558,12 @@ dependencies = [ [[package]] name = "ic-nervous-system-lock" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-nervous-system-long-message" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-cdk", @@ -4509,7 +4574,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-proto" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "comparable", @@ -4522,7 +4587,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-proxied-canister-calls-tracker" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-cdk", @@ -4531,7 +4596,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-rate-limits" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-stable-structures", "serde", @@ -4540,10 +4605,11 @@ dependencies = [ [[package]] name = "ic-nervous-system-root" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "dfn_core", + "ic-base-types", "ic-cdk", "ic-crypto-sha2", "ic-management-canister-types-private", @@ -4557,7 +4623,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-runtime" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -4570,17 +4636,17 @@ dependencies = [ [[package]] name = "ic-nervous-system-string" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-nervous-system-temporary" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-nervous-system-time-helpers" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-cdk", ] @@ -4588,7 +4654,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-timer-task" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -4603,7 +4669,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-timers" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-cdk-timers", "slotmap", @@ -4612,7 +4678,7 @@ dependencies = [ [[package]] name = "ic-nervous-system-timestamp" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "time", ] @@ -4620,7 +4686,7 @@ dependencies = [ [[package]] name = "ic-neurons-fund" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-cdk", "ic-nervous-system-common", @@ -4634,33 +4700,28 @@ dependencies = [ [[package]] name = "ic-nns-common" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "comparable", "ic-base-types", "ic-cdk", - "ic-crypto-sha2", "ic-nervous-system-canisters", - "ic-nervous-system-common", "ic-nns-constants", "ic-protobuf", "ic-registry-keys", "ic-registry-transport", "ic-stable-structures", - "ic-types", - "lazy_static", "num-traits", "prost", "serde", "serde_bytes", - "sha2 0.10.9", ] [[package]] name = "ic-nns-constants" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "maplit", @@ -4669,12 +4730,11 @@ dependencies = [ [[package]] name = "ic-nns-governance" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "build-info", "build-info-build", - "bytes", "candid", "candid_parser", "chrono", @@ -4715,8 +4775,9 @@ dependencies = [ "ic-nns-common", "ic-nns-constants", "ic-nns-governance-api", + "ic-nns-governance-derive-self-describing", "ic-nns-governance-init", - "ic-nns-gtc-accounts", + "ic-nns-handler-lifeline-interface", "ic-nns-handler-root-interface", "ic-node-rewards-canister-api", "ic-protobuf", @@ -4735,7 +4796,6 @@ dependencies = [ "maplit", "mockall", "num-traits", - "on_wire", "pretty_assertions", "prometheus-parse", "prost", @@ -4746,7 +4806,6 @@ dependencies = [ "rust_decimal_macros", "serde", "serde_bytes", - "serde_json", "strum 0.26.3", "strum_macros 0.26.4", ] @@ -4754,26 +4813,19 @@ dependencies = [ [[package]] name = "ic-nns-governance-api" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "bytes", "candid", - "comparable", "hex", "ic-base-types", "ic-crypto-sha2", - "ic-nervous-system-clients", "ic-nervous-system-common", "ic-nervous-system-common-validation", "ic-nervous-system-proto", "ic-nns-common", - "ic-protobuf", - "ic-sns-root", "ic-sns-swap", - "ic-types", "ic-utils 0.9.0", "icp-ledger", - "itertools 0.12.1", "prost", "serde", "serde_bytes", @@ -4781,15 +4833,24 @@ dependencies = [ "strum_macros 0.26.4", ] +[[package]] +name = "ic-nns-governance-derive-self-describing" +version = "0.9.0" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + [[package]] name = "ic-nns-governance-init" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "csv", "ic-base-types", "ic-nervous-system-common", - "ic-nervous-system-common-build-metadata", "ic-nervous-system-common-test-keys", "ic-nns-common", "ic-nns-governance-api", @@ -4799,20 +4860,27 @@ dependencies = [ ] [[package]] -name = "ic-nns-gtc-accounts" -version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +name = "ic-nns-handler-lifeline-interface" +version = "0.1.0" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" +dependencies = [ + "candid", + "ic-crypto-sha2", + "serde", +] [[package]] name = "ic-nns-handler-root-interface" version = "0.1.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", "ic-base-types", "ic-cdk", + "ic-management-canister-types-private", "ic-nervous-system-clients", + "ic-nervous-system-root", "ic-nns-constants", "serde", ] @@ -4820,7 +4888,7 @@ dependencies = [ [[package]] name = "ic-node-rewards-canister-api" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "chrono", @@ -4835,12 +4903,13 @@ dependencies = [ [[package]] name = "ic-protobuf" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "bincode", "candid", + "comparable", "erased-serde 0.3.31", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", "prost", "serde", "serde_json", @@ -4851,7 +4920,7 @@ dependencies = [ [[package]] name = "ic-read-state-response-parser" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-canonical-state", "ic-certification 0.9.0", @@ -4865,9 +4934,11 @@ dependencies = [ [[package]] name = "ic-registry-canister-api" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ + "attestation", "candid", + "der", "ic-base-types", "ic-nervous-system-chunks", "ic-registry-transport", @@ -4879,7 +4950,7 @@ dependencies = [ [[package]] name = "ic-registry-canister-chunkify" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-cdk", "ic-nervous-system-chunks", @@ -4891,7 +4962,7 @@ dependencies = [ [[package]] name = "ic-registry-client" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "crossbeam-channel", "ic-interfaces-registry", @@ -4904,7 +4975,7 @@ dependencies = [ [[package]] name = "ic-registry-client-fake" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-interfaces-registry", "ic-types", @@ -4913,7 +4984,7 @@ dependencies = [ [[package]] name = "ic-registry-client-helpers" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-interfaces-registry", @@ -4933,7 +5004,7 @@ dependencies = [ [[package]] name = "ic-registry-common-proto" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "prost", ] @@ -4941,7 +5012,7 @@ dependencies = [ [[package]] name = "ic-registry-keys" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "hex", @@ -4954,7 +5025,7 @@ dependencies = [ [[package]] name = "ic-registry-local-registry" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-interfaces-registry", "ic-protobuf", @@ -4972,7 +5043,7 @@ dependencies = [ [[package]] name = "ic-registry-local-store" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-interfaces-registry", "ic-registry-common-proto", @@ -4984,12 +5055,12 @@ dependencies = [ [[package]] name = "ic-registry-local-store-artifacts" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "ic-registry-nns-data-provider" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -5013,7 +5084,7 @@ dependencies = [ [[package]] name = "ic-registry-node-provider-rewards" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-cdk", @@ -5023,7 +5094,7 @@ dependencies = [ [[package]] name = "ic-registry-provisional-whitelist" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-base-types", "ic-protobuf", @@ -5032,7 +5103,7 @@ dependencies = [ [[package]] name = "ic-registry-routing-table" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-base-types", @@ -5043,7 +5114,7 @@ dependencies = [ [[package]] name = "ic-registry-subnet-features" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-management-canister-types-private", @@ -5054,7 +5125,7 @@ dependencies = [ [[package]] name = "ic-registry-subnet-type" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-protobuf", @@ -5066,7 +5137,7 @@ dependencies = [ [[package]] name = "ic-registry-transport" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -5081,7 +5152,7 @@ dependencies = [ [[package]] name = "ic-replicated-state" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "bit-vec 0.6.3", "cvt", @@ -5090,7 +5161,7 @@ dependencies = [ "ic-certification-version", "ic-config", "ic-crypto-sha2", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", "ic-interfaces", "ic-limits", "ic-logger", @@ -5110,8 +5181,8 @@ dependencies = [ "lazy_static", "libc", "maplit", + "more-asserts", "nix", - "num-traits", "phantom_newtype", "prometheus", "prost", @@ -5129,7 +5200,7 @@ dependencies = [ [[package]] name = "ic-secp256k1" version = "0.3.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "hex-literal", "hmac", @@ -5147,7 +5218,7 @@ dependencies = [ [[package]] name = "ic-sns-governance" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "base64 0.13.1", @@ -5217,7 +5288,7 @@ dependencies = [ [[package]] name = "ic-sns-governance-api" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "bytes", "candid", @@ -5242,7 +5313,7 @@ dependencies = [ [[package]] name = "ic-sns-governance-proposal-criticality" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-nervous-system-proto", ] @@ -5250,7 +5321,7 @@ dependencies = [ [[package]] name = "ic-sns-governance-proposals-amount-total-limit" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-sns-governance-token-valuation", "num-traits", @@ -5261,7 +5332,7 @@ dependencies = [ [[package]] name = "ic-sns-governance-token-valuation" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -5283,7 +5354,7 @@ dependencies = [ [[package]] name = "ic-sns-init" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "base64 0.13.1", "candid", @@ -5311,7 +5382,7 @@ dependencies = [ [[package]] name = "ic-sns-root" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "build-info", @@ -5341,7 +5412,7 @@ dependencies = [ [[package]] name = "ic-sns-swap" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "build-info", @@ -5380,7 +5451,7 @@ dependencies = [ [[package]] name = "ic-sns-swap-proto-library" version = "0.0.1" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "comparable", @@ -5395,7 +5466,7 @@ dependencies = [ [[package]] name = "ic-sns-wasm" version = "1.0.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -5439,7 +5510,7 @@ dependencies = [ [[package]] name = "ic-sys" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "cvt", "hex", @@ -5475,9 +5546,9 @@ dependencies = [ [[package]] name = "ic-transport-types" -version = "0.40.1" +version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2e7706e55836e8104c98149ec0796d20d5213fef972ac01b544657d410f1883" +checksum = "4a775244756a5d97ff19b08071a946a4b4896904e35deb036bf215e80f2e703d" dependencies = [ "candid", "hex", @@ -5494,7 +5565,7 @@ dependencies = [ [[package]] name = "ic-types" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "base64 0.13.1", "bincode", @@ -5506,7 +5577,7 @@ dependencies = [ "ic-crypto-internal-types", "ic-crypto-sha2", "ic-crypto-tree-hash", - "ic-error-types 0.2.0", + "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", "ic-heap-bytes", "ic-limits", "ic-management-canister-types-private", @@ -5533,7 +5604,7 @@ dependencies = [ [[package]] name = "ic-utils" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "hex", "scoped_threadpool", @@ -5566,7 +5637,7 @@ dependencies = [ [[package]] name = "ic-utils-thread" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "crossbeam-channel", ] @@ -5574,7 +5645,7 @@ dependencies = [ [[package]] name = "ic-validate-eq" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-validate-eq-derive", ] @@ -5582,9 +5653,8 @@ dependencies = [ [[package]] name = "ic-validate-eq-derive" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "proc-macro2", "quote", "syn 2.0.110", ] @@ -5603,6 +5673,20 @@ dependencies = [ "sha2 0.10.9", ] +[[package]] +name = "ic-verify-bls-signature" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd6c4261586eb473fe1219de63186a98e554985d5fd6f3488036c8fb82452e27" +dependencies = [ + "hex", + "ic_bls12_381", + "lazy_static", + "pairing", + "rand 0.8.5", + "sha2 0.10.9", +] + [[package]] name = "ic-wasm" version = "0.8.6" @@ -5623,7 +5707,7 @@ dependencies = [ [[package]] name = "ic-wasm-types" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-crypto-sha2", "ic-heap-bytes", @@ -5683,7 +5767,7 @@ dependencies = [ [[package]] name = "icp-ledger" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "comparable", @@ -5698,20 +5782,18 @@ dependencies = [ "ic-ledger-hash-of", "ic-stable-structures", "icrc-ledger-types", - "lazy_static", "on_wire", "prost", "serde", "serde_bytes", "serde_cbor", - "strum 0.26.3", "strum_macros 0.26.4", ] [[package]] name = "icrc-cbor" version = "0.1.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "minicbor", @@ -5722,7 +5804,7 @@ dependencies = [ [[package]] name = "icrc-ledger-client" version = "0.1.4" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -5731,8 +5813,8 @@ dependencies = [ [[package]] name = "icrc-ledger-client-cdk" -version = "0.1.3" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +version = "0.1.4" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "async-trait", "candid", @@ -5743,7 +5825,7 @@ dependencies = [ [[package]] name = "icrc-ledger-types" version = "0.1.12" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "base32", "candid", @@ -5751,7 +5833,6 @@ dependencies = [ "hex", "ic-stable-structures", "icrc-cbor", - "itertools 0.12.1", "minicbor", "num-bigint", "num-traits", @@ -5927,6 +6008,12 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "iocuddle" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8972d5be69940353d5347a1344cb375d9b457d6809b428b05bb1ca2fb9ce007" + [[package]] name = "ipnet" version = "2.11.0" @@ -6312,7 +6399,7 @@ dependencies = [ name = "log-noise-filter-backend" version = "0.7.3" dependencies = [ - "axum 0.8.6", + "axum 0.8.8", "clap", "regex", "serde", @@ -6514,6 +6601,12 @@ dependencies = [ "syn 2.0.110", ] +[[package]] +name = "more-asserts" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" + [[package]] name = "multimap" version = "0.10.1" @@ -6526,7 +6619,7 @@ version = "0.7.3" dependencies = [ "anyhow", "assert_cmd", - "axum 0.8.6", + "axum 0.8.8", "axum-otel-metrics", "base64 0.22.1", "clap", @@ -6635,9 +6728,9 @@ dependencies = [ [[package]] name = "num-bigint-dig" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82c79c15c05d4bf82b6f5ef163104cc81a760d8e874d38ac50ab67c8877b647b" +checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" dependencies = [ "lazy_static", "libm", @@ -6645,6 +6738,22 @@ dependencies = [ "num-iter", "num-traits", "rand 0.8.5", + "smallvec", + "zeroize", +] + +[[package]] +name = "num-bigint-dig" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7f9a86e097b0d187ad0e65667c2f58b9254671e86e7dbb78036b16692eae099" +dependencies = [ + "libm", + "num-integer", + "num-iter", + "num-traits", + "once_cell", + "rand 0.9.2", "serde", "smallvec", ] @@ -6773,7 +6882,7 @@ dependencies = [ [[package]] name = "on_wire" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" [[package]] name = "once_cell" @@ -6801,9 +6910,9 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] name = "opentelemetry" -version = "0.28.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "236e667b670a5cdf90c258f5a55794ec5ac5027e960c224bff8367a59e1e6426" +checksum = "9e87237e2775f74896f9ad219d26a2081751187eb7c9f5c58dde20a23b95d16c" dependencies = [ "futures-core", "futures-sink", @@ -6815,38 +6924,36 @@ dependencies = [ [[package]] name = "opentelemetry-prometheus" -version = "0.28.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "765a76ba13ec77043903322f85dc5434d7d01a37e75536d0f871ed7b9b5bbf0d" +checksum = "098a71a4430bb712be6130ed777335d2e5b19bc8566de5f2edddfce906def6ab" dependencies = [ "once_cell", "opentelemetry", "opentelemetry_sdk", "prometheus", - "protobuf", "tracing", ] [[package]] name = "opentelemetry-semantic-conventions" -version = "0.28.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fb3a2f78c2d55362cd6c313b8abedfbc0142ab3c2676822068fd2ab7d51f9b7" +checksum = "84b29a9f89f1a954936d5aa92f19b2feec3c8f3971d3e96206640db7f9706ae3" [[package]] name = "opentelemetry_sdk" -version = "0.28.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84dfad6042089c7fc1f6118b7040dc2eb4ab520abbf410b79dc481032af39570" +checksum = "afdefb21d1d47394abc1ba6c57363ab141be19e27cc70d0e422b7f303e4d290b" dependencies = [ - "async-trait", "futures-channel", "futures-executor", "futures-util", "glob", "opentelemetry", "percent-encoding", - "rand 0.8.5", + "rand 0.9.2", "serde_json", "thiserror 2.0.17", "tracing", @@ -6870,6 +6977,18 @@ dependencies = [ "sha2 0.10.9", ] +[[package]] +name = "p384" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" +dependencies = [ + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2 0.10.9", +] + [[package]] name = "pairing" version = "0.23.0" @@ -7027,7 +7146,7 @@ dependencies = [ [[package]] name = "phantom_newtype" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "ic-heap-bytes", @@ -7083,6 +7202,17 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" +[[package]] +name = "pkcs1" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" +dependencies = [ + "der", + "pkcs8", + "spki", +] + [[package]] name = "pkcs8" version = "0.10.2" @@ -7303,36 +7433,21 @@ dependencies = [ [[package]] name = "procfs" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab8809e0c18450a2db0f236d2a44ec0b4c1412d0eb936233579f0990faa5d5cd" -dependencies = [ - "bitflags 1.3.2", - "byteorder", - "flate2", - "hex", - "lazy_static", - "libc", -] - -[[package]] -name = "procfs" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" +checksum = "cc5b72d8145275d844d4b5f6d4e1eef00c8cd889edb6035c21675d1bb1f45c9f" dependencies = [ "bitflags 2.10.0", "hex", - "lazy_static", "procfs-core", "rustix 0.38.44", ] [[package]] name = "procfs-core" -version = "0.16.0" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" +checksum = "239df02d8349b06fc07398a3a1697b06418223b1c7725085e801e7c0fc6a12ec" dependencies = [ "bitflags 2.10.0", "hex", @@ -7340,9 +7455,9 @@ dependencies = [ [[package]] name = "prometheus" -version = "0.13.4" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" +checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" dependencies = [ "cfg-if", "fnv", @@ -7350,9 +7465,9 @@ dependencies = [ "libc", "memchr", "parking_lot", - "procfs 0.16.0", + "procfs", "protobuf", - "thiserror 1.0.69", + "thiserror 2.0.17", ] [[package]] @@ -7410,16 +7525,17 @@ dependencies = [ [[package]] name = "proptest" -version = "1.9.0" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40" +checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ "bit-set 0.8.0", "bit-vec 0.8.0", "bitflags 2.10.0", + "lazy_static", "num-traits", - "rand 0.9.2", - "rand_chacha 0.9.0", + "rand 0.8.5", + "rand_chacha 0.3.1", "rand_xorshift", "regex-syntax 0.8.8", "rusty-fork", @@ -7481,9 +7597,23 @@ dependencies = [ [[package]] name = "protobuf" -version = "2.28.0" +version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" +checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" +dependencies = [ + "once_cell", + "protobuf-support", + "thiserror 1.0.69", +] + +[[package]] +name = "protobuf-support" +version = "3.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" +dependencies = [ + "thiserror 1.0.69", +] [[package]] name = "psm" @@ -7676,18 +7806,18 @@ dependencies = [ [[package]] name = "rand_xorshift" -version = "0.4.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" dependencies = [ - "rand_core 0.9.3", + "rand_core 0.6.4", ] [[package]] name = "rangemap" -version = "1.6.0" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f93e7e49bb0bf967717f7bd674458b3d6b0c5f48ec7e3038166026a69fc22223" +checksum = "973443cf09a9c8656b574a866ab68dfa19f0867d0340648c7d2f6a71b8a8ea68" [[package]] name = "rayon" @@ -7729,6 +7859,17 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "redox_users" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" +dependencies = [ + "getrandom 0.2.16", + "libredox", + "thiserror 2.0.17", +] + [[package]] name = "regex" version = "1.12.2" @@ -7773,11 +7914,13 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" [[package]] name = "registry-canister" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ + "attestation", "build-info", "build-info-build", "candid", + "der", "dfn_candid", "dfn_core", "dfn_http_metrics", @@ -7794,9 +7937,7 @@ dependencies = [ "ic-management-canister-types-private", "ic-metrics-encoder", "ic-nervous-system-access-list", - "ic-nervous-system-canisters", "ic-nervous-system-chunks", - "ic-nervous-system-clients", "ic-nervous-system-common", "ic-nervous-system-common-build-metadata", "ic-nervous-system-rate-limits", @@ -7816,7 +7957,6 @@ dependencies = [ "ic-registry-transport", "ic-stable-structures", "ic-types", - "ic-utils 0.9.0", "idna", "ipnet", "lazy_static", @@ -7893,7 +8033,7 @@ dependencies = [ [[package]] name = "rewards-calculation" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "chrono", "ic-base-types", @@ -7968,16 +8108,16 @@ checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" [[package]] name = "rosetta-core" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "actix-web-prom", "anyhow", - "axum 0.8.6", + "axum 0.8.8", "bytes", "candid", "hex", - "ic-agent 0.40.1", - "ic-ed25519", + "ic-agent 0.45.0", + "ic-ed25519 0.6.0", "ic-secp256k1", "ic-types", "icp-ledger", @@ -7995,6 +8135,26 @@ dependencies = [ "tracing", ] +[[package]] +name = "rsa" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" +dependencies = [ + "const-oid", + "digest 0.10.7", + "num-bigint-dig 0.8.6", + "num-integer", + "num-traits", + "pkcs1", + "pkcs8", + "rand_core 0.6.4", + "signature", + "spki", + "subtle", + "zeroize", +] + [[package]] name = "rust_decimal" version = "1.39.0" @@ -8489,6 +8649,29 @@ dependencies = [ "url", ] +[[package]] +name = "sev" +version = "7.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2ff74d7e7d1cc172f3a45adec74fbeee928d71df095b85aaaf66eb84e1e31e6" +dependencies = [ + "base64 0.22.1", + "bitfield", + "bitflags 2.10.0", + "byteorder", + "dirs 6.0.0", + "hex", + "iocuddle", + "lazy_static", + "libc", + "p384", + "rsa", + "sha2 0.10.9", + "static_assertions", + "uuid", + "x509-cert", +] + [[package]] name = "sha1" version = "0.10.6" @@ -8743,7 +8926,7 @@ dependencies = [ [[package]] name = "sns-treasury-manager" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", "derivative", @@ -8828,7 +9011,7 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af91f480ee899ab2d9f8435bfdfc14d08a5754bd9d3fef1f1a1c23336aad6c8b" dependencies = [ - "async-channel", + "async-channel 1.9.0", "cfg-if", "futures-core", "pin-project-lite", @@ -9226,6 +9409,27 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" +[[package]] +name = "tls_codec" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b" +dependencies = [ + "tls_codec_derive", + "zeroize", +] + +[[package]] +name = "tls_codec_derive" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.110", +] + [[package]] name = "tokio" version = "1.48.0" @@ -9243,16 +9447,6 @@ dependencies = [ "windows-sys 0.61.2", ] -[[package]] -name = "tokio-io-timeout" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76" -dependencies = [ - "pin-project-lite", - "tokio", -] - [[package]] name = "tokio-macros" version = "2.6.0" @@ -9508,7 +9702,7 @@ dependencies = [ [[package]] name = "tree-deserializer" version = "0.9.0" -source = "git+https://github.com/dfinity/ic.git?rev=f34ab00f31dc3f223ef832be30303f93e59c19ec#f34ab00f31dc3f223ef832be30303f93e59c19ec" +source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "ic-crypto-tree-hash", "leb128", @@ -9674,6 +9868,7 @@ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" dependencies = [ "getrandom 0.3.4", "js-sys", + "serde", "wasm-bindgen", ] @@ -10305,6 +10500,18 @@ dependencies = [ "tap", ] +[[package]] +name = "x509-cert" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94" +dependencies = [ + "const-oid", + "der", + "spki", + "tls_codec", +] + [[package]] name = "x509-parser" version = "0.16.0" diff --git a/Cargo.toml b/Cargo.toml index fdac2db9a..7572b0cf5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,8 +42,8 @@ ahash = "0.8.12" anyhow = "1.0.99" async-recursion = "1.1.1" async-trait = "0.1.89" -axum-otel-metrics = "0.10.0" -axum = "0.8.4" +axum-otel-metrics = "0.11.0" +axum = "0.8.8" backoff = { version = "0.4.0", features = ["tokio"] } backon = "1.5.2" candid = "0.10.18" @@ -93,52 +93,52 @@ self_update = { version = "0.41.0", default-features = false, features = [ "archive-tar", "rustls", ] } -ic-base-types = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-canister-client = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-canister-client-sender = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } +ic-base-types = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-canister-client = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-canister-client-sender = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } ic-canisters = { path = "rs/ic-canisters" } -ic-http-types = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-config = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-crypto-utils-threshold-sig-der = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-dummy-getrandom-for-wasm = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-http-endpoints-metrics = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-interfaces-registry = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } +ic-http-types = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-config = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-crypto-utils-threshold-sig-der = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-dummy-getrandom-for-wasm = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-http-endpoints-metrics = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-interfaces-registry = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } ic-management-backend = { path = "rs/ic-management-backend" } -ic-management-canister-types-private = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } +ic-management-canister-types-private = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } ic-management-types = { path = "rs/ic-management-types" } -ic-metrics = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nervous-system-canisters = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nervous-system-common = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nervous-system-runtime = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nns-common = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nns-constants = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nns-governance = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nns-governance-api = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-protobuf = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-canister-client = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-canister-api = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-client = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-client-fake = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-client-helpers = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-common-proto = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-keys = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-local-registry = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-local-store = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-local-store-artifacts = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-nns-data-provider = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-subnet-type = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-registry-transport = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-sys = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-types = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nervous-system-root = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nervous-system-clients = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-nervous-system-proto = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-sns-wasm = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -cycles-minting-canister = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-icrc1-test-utils = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -rosetta-core = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -icp-ledger = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -icrc-ledger-types = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } +ic-metrics = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nervous-system-canisters = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nervous-system-common = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nervous-system-runtime = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nns-common = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nns-constants = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nns-governance = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nns-governance-api = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-protobuf = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-canister-client = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-canister-api = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-client = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-client-fake = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-client-helpers = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-common-proto = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-keys = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-local-registry = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-local-store = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-local-store-artifacts = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-nns-data-provider = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-subnet-type = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-registry-transport = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-sys = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-types = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nervous-system-root = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nervous-system-clients = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-nervous-system-proto = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-sns-wasm = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +cycles-minting-canister = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-icrc1-test-utils = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +rosetta-core = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +icp-ledger = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +icrc-ledger-types = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } ic-metrics-encoder = "1.1.1" ic-transport-types = "0.39.3" ic-utils = "0.39.3" @@ -151,20 +151,20 @@ lazy_static = "1.5.0" log = "0.4.28" lru = "0.12.5" num-traits = "0.2" -opentelemetry = { version = "0.28", features = ["metrics"] } -opentelemetry_sdk = "0.28" -opentelemetry-prometheus = "0.28" +opentelemetry = { version = "0.29", features = ["metrics"] } +opentelemetry_sdk = "0.29" +opentelemetry-prometheus = "0.29.1" pretty_assertions = "1.4.1" pretty_env_logger = "0.5.0" prometheus-http-query = { version = "0.8.3", default-features = false, features = [ "rustls-tls-webpki-roots", ] } -prometheus = { version = "0.13.4", features = ["process"] } +prometheus = { version = "0.14.0", features = ["process"] } prost = "0.13" rand = { version = "0.9.2", features = ["std_rng"] } rand_seeder = "0.3.0" regex = "1.11.2" -registry-canister = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } +registry-canister = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } reqwest = { version = "0.12", default-features = false, features = [ "rustls-tls-webpki-roots", "blocking", @@ -210,9 +210,9 @@ ic-cdk = { version = "^0.18.7" } ic-cdk-timers = { version = "^0.12.2" } ic-cdk-macros = { version = "^0.18.7" } ic-stable-structures = "0.6.9" -dfn_core = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -rewards-calculation = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } -ic-node-rewards-canister-api = { git = "https://github.com/dfinity/ic.git", rev = "f34ab00f31dc3f223ef832be30303f93e59c19ec" } +dfn_core = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +rewards-calculation = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } +ic-node-rewards-canister-api = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } # dre-airflow deps, should be replaced with dre-airflow once indexmap = { version = "2.11.1", features = ["serde"] } diff --git a/MODULE.bazel b/MODULE.bazel index cc4ef5e69..f1407b877 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -166,7 +166,7 @@ http_archive( build_file = "@//3rdparty:BUILD.codeowners.bazel", ) -IC_REPO_VERSION = "f34ab00f31dc3f223ef832be30303f93e59c19ec" +IC_REPO_VERSION = "89cc1c20223532c900b94de5bc6bd8cbde278797" http_archive( name = "ic_repo", diff --git a/docker/Dockerfile b/docker/Dockerfile index 6dd650c74..89640739c 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -76,7 +76,7 @@ ENV CARGO_HOME=/cargo COPY docker /docker # Download ic-admin -ARG ic_git_revision=f34ab00f31dc3f223ef832be30303f93e59c19ec +ARG ic_git_revision=89cc1c20223532c900b94de5bc6bd8cbde278797 RUN curl --fail https://download.dfinity.systems/ic/${ic_git_revision}/release/ic-admin.gz -o - | gunzip -c >| /usr/bin/ic-admin && \ chmod +x /usr/bin/ic-admin diff --git a/ic-revisions.json b/ic-revisions.json index af4bc9b02..7154459eb 100644 --- a/ic-revisions.json +++ b/ic-revisions.json @@ -1,10 +1,10 @@ { "https://github.com/dfinity/ic.git": { - "commit": "f34ab00f31dc3f223ef832be30303f93e59c19ec", + "commit": "89cc1c20223532c900b94de5bc6bd8cbde278797", "ref": "refs/heads/master" }, "https://github.com/dfinity/cdk-rs.git": { - "commit": "80d82348b7de1f10117aead50ad26669da7e2b79", + "commit": "c04fa84b15f96f926fa7b5ccc9d4e2fa4f1ba7c5", "ref": "refs/heads/main" } } \ No newline at end of file diff --git a/pylib/ic_admin.py b/pylib/ic_admin.py index f3de52617..0937d9757 100644 --- a/pylib/ic_admin.py +++ b/pylib/ic_admin.py @@ -166,7 +166,7 @@ def canister_version(agent: Agent, canister_principal: str) -> str: if __name__ == "__main__": # One can run some simple one-off tests here, e.g.: ic_admin = IcAdmin( - "https://ic0.app", git_revision="f34ab00f31dc3f223ef832be30303f93e59c19ec" + "https://ic0.app", git_revision="89cc1c20223532c900b94de5bc6bd8cbde278797" ) print(ic_admin.get_subnet_replica_versions()) diff --git a/rs/cli/src/commands/proposals/mod.rs b/rs/cli/src/commands/proposals/mod.rs index 9d56f5e77..e2dcfbecb 100644 --- a/rs/cli/src/commands/proposals/mod.rs +++ b/rs/cli/src/commands/proposals/mod.rs @@ -274,6 +274,9 @@ impl TryFrom for Proposal { Action::UpdateCanisterSettings(a) => serde_json::to_value(a)?, Action::DeregisterKnownNeuron(a) => serde_json::to_value(a)?, Action::FulfillSubnetRentalRequest(a) => serde_json::to_value(a)?, + Action::BlessAlternativeGuestOsVersion(a) => serde_json::to_value(a)?, + Action::TakeCanisterSnapshot(a) => serde_json::to_value(a)?, + Action::LoadCanisterSnapshot(a) => serde_json::to_value(a)?, }, }) } diff --git a/rs/cli/src/commands/subnet/set_authorization.rs b/rs/cli/src/commands/subnet/set_authorization.rs index a54d9f55a..66f5e1ced 100644 --- a/rs/cli/src/commands/subnet/set_authorization.rs +++ b/rs/cli/src/commands/subnet/set_authorization.rs @@ -133,6 +133,7 @@ fn construct_summary( SubnetType::Application => "Application", SubnetType::System => "System", SubnetType::VerifiedApplication => "Verified Application", + SubnetType::CloudEngine => "Cloud Engine", }, match (was_default, is_default) { // The state doesn't change diff --git a/rs/cli/src/commands/update_default_subnets.rs b/rs/cli/src/commands/update_default_subnets.rs index d966f538c..827377f78 100644 --- a/rs/cli/src/commands/update_default_subnets.rs +++ b/rs/cli/src/commands/update_default_subnets.rs @@ -215,6 +215,7 @@ fn construct_summary( SubnetType::Application => "Application", SubnetType::System => "System", SubnetType::VerifiedApplication => "Verified Application", + SubnetType::CloudEngine => "Cloud Engine", }, match (was_default, excluded_desc.is_none()) { // The state doesn't change diff --git a/rs/cli/src/qualification/upgrade_subnets.rs b/rs/cli/src/qualification/upgrade_subnets.rs index b0cee1599..ab3cf0cc3 100644 --- a/rs/cli/src/qualification/upgrade_subnets.rs +++ b/rs/cli/src/qualification/upgrade_subnets.rs @@ -49,6 +49,7 @@ impl Step for UpgradeSubnets { SubnetType::Application => "application subnets", SubnetType::System => "system subnets", SubnetType::VerifiedApplication => "verified-application subnets", + SubnetType::CloudEngine => "cloud-engine subnets", }, None => "unassigned nodes", }, @@ -65,6 +66,7 @@ impl Step for UpgradeSubnets { SubnetType::Application => "application_subnet", SubnetType::System => "system_subnet", SubnetType::VerifiedApplication => "verified-application_subnet", + SubnetType::CloudEngine => "cloud-engine_subnet", }, None => "unassigned_nodes", } diff --git a/rs/cli/src/qualification/util.rs b/rs/cli/src/qualification/util.rs index 50d2d5694..9248be054 100644 --- a/rs/cli/src/qualification/util.rs +++ b/rs/cli/src/qualification/util.rs @@ -159,6 +159,7 @@ impl StepCtx { SubnetType::Application => "application".to_string(), SubnetType::System => "system".to_string(), SubnetType::VerifiedApplication => "verified-app".to_string(), + SubnetType::CloudEngine => "cloud-engine".to_string(), }, s.principal.to_string(), s.replica_version.clone(), diff --git a/rs/ic-management-backend/src/lazy_registry.rs b/rs/ic-management-backend/src/lazy_registry.rs index baae68d3f..fff9f8d22 100644 --- a/rs/ic-management-backend/src/lazy_registry.rs +++ b/rs/ic-management-backend/src/lazy_registry.rs @@ -640,6 +640,7 @@ impl LazyRegistry for LazyRegistryImpl { match subnet_type { SubnetType::System => "System", SubnetType::Application | SubnetType::VerifiedApplication => "App", + SubnetType::CloudEngine => "CloudEngine", }, i ) diff --git a/rs/ic-management-backend/src/registry.rs b/rs/ic-management-backend/src/registry.rs index 6c0d4bc2d..0144d8cb5 100644 --- a/rs/ic-management-backend/src/registry.rs +++ b/rs/ic-management-backend/src/registry.rs @@ -556,6 +556,7 @@ impl RegistryState { match subnet_type { SubnetType::Application | SubnetType::VerifiedApplication => "App", SubnetType::System => "System", + SubnetType::CloudEngine => "CloudEngine", }, i ) diff --git a/rs/ic-observability/multiservice-discovery/src/server_handlers/dto.rs b/rs/ic-observability/multiservice-discovery/src/server_handlers/dto.rs index 216220dec..cd0bef374 100644 --- a/rs/ic-observability/multiservice-discovery/src/server_handlers/dto.rs +++ b/rs/ic-observability/multiservice-discovery/src/server_handlers/dto.rs @@ -1,5 +1,5 @@ use base64::{Engine as _, engine::general_purpose as b64}; -use ic_crypto_utils_threshold_sig_der::parse_threshold_sig_key_from_der; +use ic_crypto_utils_threshold_sig_der::{KeyConversionError, parse_threshold_sig_key_from_der}; use ic_registry_client::client::ThresholdSigPublicKey; use service_discovery::job_types::{JobType, JobTypeParseError}; use service_discovery::registry_sync::nns_reachable; @@ -26,7 +26,7 @@ pub struct DefinitionDto { #[derive(Debug)] pub(crate) enum BadDtoError { - InvalidPublicKey(String, std::io::Error), + InvalidPublicKey(String, KeyConversionError), NNSUnreachable(String), } From 2673e6ad06316a18290737b84b0824e3e4649f26 Mon Sep 17 00:00:00 2001 From: nikolamilosa Date: Mon, 2 Mar 2026 15:18:34 +0000 Subject: [PATCH 2/3] locking --- Cargo.Bazel.lock | 3463 +++++++++++++++++++++++++++++++--------------- Cargo.lock | 18 +- 2 files changed, 2323 insertions(+), 1158 deletions(-) diff --git a/Cargo.Bazel.lock b/Cargo.Bazel.lock index 90cb01943..8ee9aaaa5 100644 --- a/Cargo.Bazel.lock +++ b/Cargo.Bazel.lock @@ -1,5 +1,5 @@ { - "checksum": "de94969bf40e5d96abf7d621d6dff0cc5856195fe769e7b079690a13f41ca080", + "checksum": "0013ade3373e859f71d50cd93f4349eccba345c84b6e1d46017f4880b2064686", "crates": { "actix-codec 0.5.2": { "name": "actix-codec", @@ -37,7 +37,7 @@ "target": "bitflags" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -146,7 +146,7 @@ "target": "bitflags" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -699,7 +699,7 @@ "target": "actix_utils" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -880,14 +880,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-web-prom 0.9.0": { + "actix-web-prom 0.10.0": { "name": "actix-web-prom", - "version": "0.9.0", + "version": "0.10.0", "package_url": "https://github.com/nlopes/actix-web-prom.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-web-prom/0.9.0/download", - "sha256": "56a34f1825c3ae06567a9d632466809bbf34963c86002e8921b64f32d48d289d" + "url": "https://static.crates.io/crates/actix-web-prom/0.10.0/download", + "sha256": "a7eb266b4c692a4a7e68429fcbe4eb3bd55c053f6d84c0522dc83df22395edf6" } }, "targets": [ @@ -928,7 +928,7 @@ "target": "pin_project_lite" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, { @@ -943,7 +943,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.0" + "version": "0.10.0" }, "license": "MIT", "license_ids": [ @@ -2036,7 +2036,6 @@ ], "crate_features": { "common": [ - "default", "std" ], "selects": {} @@ -2514,6 +2513,73 @@ ], "license_file": "LICENSE-APACHE" }, + "async-channel 2.5.0": { + "name": "async-channel", + "version": "2.5.0", + "package_url": "https://github.com/smol-rs/async-channel", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/async-channel/2.5.0/download", + "sha256": "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" + } + }, + "targets": [ + { + "Library": { + "crate_name": "async_channel", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "async_channel", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "concurrent-queue 2.5.0", + "target": "concurrent_queue" + }, + { + "id": "event-listener-strategy 0.5.4", + "target": "event_listener_strategy" + }, + { + "id": "futures-core 0.3.31", + "target": "futures_core" + }, + { + "id": "pin-project-lite 0.2.16", + "target": "pin_project_lite" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "2.5.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "async-compression 0.4.33": { "name": "async-compression", "version": "0.4.33", @@ -2965,6 +3031,117 @@ ], "license_file": "LICENSE-APACHE" }, + "attestation 0.0.0": { + "name": "attestation", + "version": "0.0.0", + "package_url": null, + "repository": { + "Git": { + "remote": "https://github.com/dfinity/ic.git", + "commitish": { + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" + }, + "strip_prefix": "rs/ic_os/sev/attestation" + } + }, + "targets": [ + { + "Library": { + "crate_name": "attestation", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "attestation", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "candid 0.10.24", + "target": "candid" + }, + { + "id": "der 0.7.10", + "target": "der" + }, + { + "id": "hex 0.4.3", + "target": "hex" + }, + { + "id": "ic-interfaces-registry 0.9.0", + "target": "ic_interfaces_registry" + }, + { + "id": "ic-protobuf 0.9.0", + "target": "ic_protobuf" + }, + { + "id": "ic-registry-client-helpers 0.9.0", + "target": "ic_registry_client_helpers" + }, + { + "id": "ic-types 0.9.0", + "target": "ic_types" + }, + { + "id": "ic-utils 0.9.0", + "target": "ic_utils" + }, + { + "id": "itertools 0.12.1", + "target": "itertools" + }, + { + "id": "prost 0.13.5", + "target": "prost" + }, + { + "id": "rand 0.8.5", + "target": "rand" + }, + { + "id": "serde 1.0.228", + "target": "serde" + }, + { + "id": "sev 7.1.0", + "target": "sev" + }, + { + "id": "sha2 0.10.9", + "target": "sha2" + }, + { + "id": "thiserror 2.0.17", + "target": "thiserror" + } + ], + "selects": { + "cfg(target_arch = \"wasm32\")": [ + { + "id": "getrandom 0.2.16", + "target": "getrandom" + } + ] + } + }, + "edition": "2024", + "version": "0.0.0" + }, + "license": null, + "license_ids": [], + "license_file": null + }, "autocfg 1.5.0": { "name": "autocfg", "version": "1.5.0", @@ -3040,7 +3217,7 @@ "target": "axum_core" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -3128,14 +3305,14 @@ ], "license_file": "LICENSE" }, - "axum 0.8.6": { + "axum 0.8.8": { "name": "axum", - "version": "0.8.6", + "version": "0.8.8", "package_url": "https://github.com/tokio-rs/axum", "repository": { "Http": { - "url": "https://static.crates.io/crates/axum/0.8.6/download", - "sha256": "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871" + "url": "https://static.crates.io/crates/axum/0.8.8/download", + "sha256": "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" } }, "targets": [ @@ -3184,7 +3361,7 @@ "target": "base64" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -3291,7 +3468,7 @@ "selects": {} }, "edition": "2021", - "version": "0.8.6" + "version": "0.8.8" }, "license": "MIT", "license_ids": [ @@ -3331,7 +3508,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -3433,7 +3610,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -3488,14 +3665,14 @@ ], "license_file": "LICENSE" }, - "axum-otel-metrics 0.10.0": { + "axum-otel-metrics 0.11.0": { "name": "axum-otel-metrics", - "version": "0.10.0", + "version": "0.11.0", "package_url": "https://github.com/ttys3/axum-otel-metrics/", "repository": { "Http": { - "url": "https://static.crates.io/crates/axum-otel-metrics/0.10.0/download", - "sha256": "0e5c40e35dba9c7ce25a6ca0baf5e66bed2612fc92f7b7acfee7611121d9219a" + "url": "https://static.crates.io/crates/axum-otel-metrics/0.11.0/download", + "sha256": "dbac42c74b691b2a03a2ddece369c85c2b9ca90fc9109798f41038da7ac9f8fd" } }, "targets": [ @@ -3520,7 +3697,7 @@ "deps": { "common": [ { - "id": "axum 0.8.6", + "id": "axum 0.8.8", "target": "axum" }, { @@ -3536,15 +3713,15 @@ "target": "http_body" }, { - "id": "opentelemetry 0.28.0", + "id": "opentelemetry 0.29.1", "target": "opentelemetry" }, { - "id": "opentelemetry-semantic-conventions 0.28.0", + "id": "opentelemetry-semantic-conventions 0.29.0", "target": "opentelemetry_semantic_conventions" }, { - "id": "opentelemetry_sdk 0.28.0", + "id": "opentelemetry_sdk 0.29.0", "target": "opentelemetry_sdk" }, { @@ -3559,7 +3736,7 @@ "selects": {} }, "edition": "2021", - "version": "0.10.0" + "version": "0.11.0" }, "license": "MIT", "license_ids": [ @@ -4412,6 +4589,110 @@ ], "license_file": "LICENSE-APACHE" }, + "bitfield 0.19.4": { + "name": "bitfield", + "version": "0.19.4", + "package_url": "https://github.com/dzamlo/rust-bitfield", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/bitfield/0.19.4/download", + "sha256": "21ba6517c6b0f2bf08be60e187ab64b038438f22dd755614d8fe4d4098c46419" + } + }, + "targets": [ + { + "Library": { + "crate_name": "bitfield", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "bitfield", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "proc_macro_deps": { + "common": [ + { + "id": "bitfield-macros 0.19.4", + "target": "bitfield_macros" + } + ], + "selects": {} + }, + "version": "0.19.4" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "bitfield-macros 0.19.4": { + "name": "bitfield-macros", + "version": "0.19.4", + "package_url": "https://github.com/dzamlo/rust-bitfield", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/bitfield-macros/0.19.4/download", + "sha256": "f48d6ace212fdf1b45fd6b566bb40808415344642b76c3224c07c8df9da81e97" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "bitfield_macros", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "bitfield_macros", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.103", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.42", + "target": "quote" + }, + { + "id": "syn 2.0.110", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.19.4" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, "bitflags 1.3.2": { "name": "bitflags", "version": "1.3.2", @@ -5751,14 +6032,14 @@ ], "license_file": "LICENSE-MIT" }, - "bytes 1.10.1": { + "bytes 1.11.1": { "name": "bytes", - "version": "1.10.1", + "version": "1.11.1", "package_url": "https://github.com/tokio-rs/bytes", "repository": { "Http": { - "url": "https://static.crates.io/crates/bytes/1.10.1/download", - "sha256": "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" + "url": "https://static.crates.io/crates/bytes/1.11.1/download", + "sha256": "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" } }, "targets": [ @@ -5787,8 +6068,8 @@ ], "selects": {} }, - "edition": "2018", - "version": "1.10.1" + "edition": "2021", + "version": "1.11.1" }, "license": "MIT", "license_ids": [ @@ -5828,7 +6109,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" } ], @@ -5972,6 +6253,75 @@ ], "license_file": "LICENSE" }, + "cached 0.56.0": { + "name": "cached", + "version": "0.56.0", + "package_url": "https://github.com/jaemk/cached", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/cached/0.56.0/download", + "sha256": "801927ee168e17809ab8901d9f01f700cd7d8d6a6527997fee44e4b0327a253c" + } + }, + "targets": [ + { + "Library": { + "crate_name": "cached", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "cached", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "ahash" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "ahash 0.8.12", + "target": "ahash" + }, + { + "id": "hashbrown 0.15.5", + "target": "hashbrown" + }, + { + "id": "once_cell 1.21.3", + "target": "once_cell" + }, + { + "id": "thiserror 2.0.17", + "target": "thiserror" + }, + { + "id": "web-time 1.1.0", + "target": "web_time" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.56.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "camino 1.2.1": { "name": "camino", "version": "1.2.1", @@ -6053,14 +6403,14 @@ ], "license_file": "LICENSE-APACHE" }, - "candid 0.10.20": { + "candid 0.10.24": { "name": "candid", - "version": "0.10.20", + "version": "0.10.24", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid/0.10.20/download", - "sha256": "8037a01ec09d6c06883a38bad4f47b8d06158ad360b841e0ae5707c9884dfaf6" + "url": "https://static.crates.io/crates/candid/0.10.24/download", + "sha256": "601b519700ec333a2a2c7eb3e8e1eca89177055e3e1fb24ca42cbbb025986696" } }, "targets": [ @@ -6145,7 +6495,7 @@ } ], "selects": { - "cfg(not(target_arch = \"wasm32\"))": [ + "cfg(not(target_family = \"wasm\"))": [ { "id": "stacker 0.1.22", "target": "stacker" @@ -6157,7 +6507,7 @@ "proc_macro_deps": { "common": [ { - "id": "candid_derive 0.10.20", + "id": "candid_derive 0.10.24", "target": "candid_derive" }, { @@ -6167,7 +6517,7 @@ ], "selects": {} }, - "version": "0.10.20" + "version": "0.10.24" }, "license": "Apache-2.0", "license_ids": [ @@ -6183,7 +6533,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/candid_utils" } @@ -6210,7 +6560,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -6227,14 +6577,14 @@ "license_ids": [], "license_file": null }, - "candid_derive 0.10.20": { + "candid_derive 0.10.24": { "name": "candid_derive", - "version": "0.10.20", + "version": "0.10.24", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/candid_derive/0.10.20/download", - "sha256": "fb45f4d5eff3805598ee633dd80f8afb306c023249d34b5b7dfdc2080ea1df2e" + "url": "https://static.crates.io/crates/candid_derive/0.10.24/download", + "sha256": "f195a40cd3d199191fc8b534165fadd78c08a1f9666222addaf9f58593002a73" } }, "targets": [ @@ -6278,7 +6628,7 @@ "selects": {} }, "edition": "2021", - "version": "0.10.20" + "version": "0.10.24" }, "license": "Apache-2.0", "license_ids": [ @@ -6334,7 +6684,7 @@ "target": "anyhow" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -8130,6 +8480,13 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "db", + "std" + ], + "selects": {} + }, "edition": "2021", "version": "0.9.6" }, @@ -9986,7 +10343,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nns/cmc" } @@ -10024,16 +10381,12 @@ ], "deps": { "common": [ - { - "id": "base64 0.13.1", - "target": "base64" - }, { "id": "build-info 0.0.27", "target": "build_info" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -10052,10 +10405,6 @@ "id": "ic-cdk 0.19.0", "target": "ic_cdk" }, - { - "id": "ic-certified-map 0.3.4", - "target": "ic_certified_map" - }, { "id": "ic-crypto-tree-hash 0.9.0", "target": "ic_crypto_tree_hash" @@ -10080,10 +10429,6 @@ "id": "ic-metrics-encoder 1.1.1", "target": "ic_metrics_encoder" }, - { - "id": "ic-nervous-system-clients 0.0.1", - "target": "ic_nervous_system_clients" - }, { "id": "ic-nervous-system-common 0.9.0", "target": "ic_nervous_system_common" @@ -10104,10 +10449,6 @@ "id": "ic-nns-constants 0.9.0", "target": "ic_nns_constants" }, - { - "id": "ic-protobuf 0.9.0", - "target": "ic_protobuf" - }, { "id": "ic-types 0.9.0", "target": "ic_types" @@ -10132,10 +10473,6 @@ "id": "on_wire 0.9.0", "target": "on_wire" }, - { - "id": "prost 0.13.5", - "target": "prost" - }, { "id": "rand 0.8.5", "target": "rand" @@ -10148,10 +10485,6 @@ "id": "serde_cbor 0.11.2", "target": "serde_cbor" }, - { - "id": "sha2 0.10.9", - "target": "sha2" - }, { "id": "yansi 0.5.1", "target": "yansi" @@ -11213,6 +11546,8 @@ "crate_features": { "common": [ "alloc", + "derive", + "flagset", "oid", "pem", "std", @@ -11226,6 +11561,10 @@ "id": "const-oid 0.9.6", "target": "const_oid" }, + { + "id": "flagset 0.4.7", + "target": "flagset" + }, { "id": "pem-rfc7468 0.7.0", "target": "pem_rfc7468" @@ -11238,6 +11577,15 @@ "selects": {} }, "edition": "2021", + "proc_macro_deps": { + "common": [ + { + "id": "der_derive 0.7.3", + "target": "der_derive" + } + ], + "selects": {} + }, "version": "0.7.10" }, "license": "Apache-2.0 OR MIT", @@ -11329,6 +11677,62 @@ ], "license_file": "LICENSE-APACHE" }, + "der_derive 0.7.3": { + "name": "der_derive", + "version": "0.7.3", + "package_url": "https://github.com/RustCrypto/formats/tree/master/der/derive", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/der_derive/0.7.3/download", + "sha256": "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "der_derive", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "der_derive", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.103", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.42", + "target": "quote" + }, + { + "id": "syn 2.0.110", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.7.3" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "deranged 0.5.5": { "name": "deranged", "version": "0.5.5", @@ -11674,7 +12078,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rust_canisters/dfn_candid" } @@ -11701,7 +12105,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -11742,7 +12146,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rust_canisters/dfn_core" } @@ -11794,7 +12198,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rust_canisters/dfn_http" } @@ -11821,7 +12225,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -11858,7 +12262,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rust_canisters/dfn_http_metrics" } @@ -11926,7 +12330,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rust_canisters/dfn_protobuf" } @@ -12290,6 +12694,54 @@ ], "license_file": "LICENSE-APACHE" }, + "dirs 6.0.0": { + "name": "dirs", + "version": "6.0.0", + "package_url": "https://github.com/soc/dirs-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/dirs/6.0.0/download", + "sha256": "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "dirs", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "dirs", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "dirs-sys 0.5.0", + "target": "dirs_sys" + } + ], + "selects": {} + }, + "edition": "2015", + "version": "6.0.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "dirs-next 2.0.0": { "name": "dirs-next", "version": "2.0.0", @@ -12409,6 +12861,73 @@ ], "license_file": "LICENSE-APACHE" }, + "dirs-sys 0.5.0": { + "name": "dirs-sys", + "version": "0.5.0", + "package_url": "https://github.com/dirs-dev/dirs-sys-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/dirs-sys/0.5.0/download", + "sha256": "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" + } + }, + "targets": [ + { + "Library": { + "crate_name": "dirs_sys", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "dirs_sys", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "option-ext 0.2.0", + "target": "option_ext" + } + ], + "selects": { + "cfg(target_os = \"redox\")": [ + { + "id": "redox_users 0.5.2", + "target": "redox_users" + } + ], + "cfg(unix)": [ + { + "id": "libc 0.2.177", + "target": "libc" + } + ], + "cfg(windows)": [ + { + "id": "windows-sys 0.61.2", + "target": "windows_sys" + } + ] + } + }, + "edition": "2015", + "version": "0.5.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "dirs-sys-next 0.1.2": { "name": "dirs-sys-next", "version": "0.1.2", @@ -12733,7 +13252,7 @@ "target": "base64" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -13584,6 +14103,7 @@ "arithmetic", "default", "digest", + "ecdh", "ff", "group", "hazmat", @@ -13620,6 +14140,10 @@ "id": "group 0.13.0", "target": "group" }, + { + "id": "hkdf 0.12.4", + "target": "hkdf" + }, { "id": "pem-rfc7468 0.7.0", "target": "pem_rfc7468" @@ -14623,7 +15147,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig/fe-derive" } @@ -14654,7 +15178,7 @@ "target": "hex" }, { - "id": "num-bigint-dig 0.8.5", + "id": "num-bigint-dig 0.9.1", "target": "num_bigint_dig" }, { @@ -14965,6 +15489,44 @@ ], "license_file": "LICENSE-APACHE" }, + "flagset 0.4.7": { + "name": "flagset", + "version": "0.4.7", + "package_url": "https://github.com/enarx/flagset", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/flagset/0.4.7/download", + "sha256": "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe" + } + }, + "targets": [ + { + "Library": { + "crate_name": "flagset", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "flagset", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "0.4.7" + }, + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], + "license_file": "LICENSE" + }, "flate2 1.1.5": { "name": "flate2", "version": "1.1.5", @@ -15998,11 +16560,11 @@ "target": "anyhow" }, { - "id": "axum 0.8.6", + "id": "axum 0.8.8", "target": "axum" }, { - "id": "axum-otel-metrics 0.10.0", + "id": "axum-otel-metrics 0.11.0", "target": "axum_otel_metrics" }, { @@ -16026,7 +16588,7 @@ "target": "itertools" }, { - "id": "opentelemetry 0.28.0", + "id": "opentelemetry 0.29.1", "target": "opentelemetry" }, { @@ -16685,7 +17247,7 @@ "target": "atomic_waker" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -16946,6 +17508,73 @@ ], "license_file": "LICENSE-APACHE" }, + "hashbrown 0.15.5": { + "name": "hashbrown", + "version": "0.15.5", + "package_url": "https://github.com/rust-lang/hashbrown", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/hashbrown/0.15.5/download", + "sha256": "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" + } + }, + "targets": [ + { + "Library": { + "crate_name": "hashbrown", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "hashbrown", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "allocator-api2", + "default", + "default-hasher", + "equivalent", + "inline-more", + "raw-entry" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "allocator-api2 0.2.21", + "target": "allocator_api2" + }, + { + "id": "equivalent 1.0.2", + "target": "equivalent" + }, + { + "id": "foldhash 0.1.5", + "target": "foldhash" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.15.5" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "hashbrown 0.16.0": { "name": "hashbrown", "version": "0.16.0", @@ -17516,7 +18145,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -17579,7 +18208,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -17635,7 +18264,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -17692,7 +18321,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -17971,7 +18600,7 @@ "target": "atomic_waker" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -18308,7 +18937,7 @@ "target": "base64" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -18568,7 +19197,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/monitoring/adapter_metrics/client" } @@ -18607,11 +19236,11 @@ "target": "ic_http_endpoints_async_utils" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, { - "id": "protobuf 2.28.0", + "id": "protobuf 3.7.2", "target": "protobuf" }, { @@ -18648,7 +19277,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/monitoring/adapter_metrics/service" } @@ -18795,7 +19424,7 @@ "target": "cached" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -18867,7 +19496,7 @@ "target": "rand" }, { - "id": "rangemap 1.6.0", + "id": "rangemap 1.7.1", "target": "rangemap" }, { @@ -18950,14 +19579,14 @@ ], "license_file": null }, - "ic-agent 0.40.1": { + "ic-agent 0.45.0": { "name": "ic-agent", - "version": "0.40.1", + "version": "0.45.0", "package_url": "https://github.com/dfinity/agent-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-agent/0.40.1/download", - "sha256": "4832787330765f1bdf67123928855390b7f0b5a16dd0a7ea67674b7d3178ffd0" + "url": "https://static.crates.io/crates/ic-agent/0.45.0/download", + "sha256": "20a6173286a80fc478462fc45de42faf37a79b0109a489743aeffb3e4a2fc772" } }, "targets": [ @@ -18994,7 +19623,7 @@ "target": "arc_swap" }, { - "id": "async-channel 1.9.0", + "id": "async-channel 2.5.0", "target": "async_channel" }, { @@ -19010,11 +19639,15 @@ "target": "backoff" }, { - "id": "cached 0.52.0", + "id": "bytes 1.11.1", + "target": "bytes" + }, + { + "id": "cached 0.56.0", "target": "cached" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -19049,16 +19682,24 @@ "id": "http-body 1.0.1", "target": "http_body" }, + { + "id": "http-body-util 0.1.3", + "target": "http_body_util" + }, { "id": "ic-certification 3.0.3", "target": "ic_certification" }, { - "id": "ic-transport-types 0.40.1", + "id": "ic-ed25519 0.5.0", + "target": "ic_ed25519" + }, + { + "id": "ic-transport-types 0.45.0", "target": "ic_transport_types" }, { - "id": "ic-verify-bls-signature 0.5.0", + "id": "ic-verify-bls-signature 0.6.0", "target": "ic_verify_bls_signature" }, { @@ -19086,7 +19727,7 @@ "target": "rand" }, { - "id": "rangemap 1.6.0", + "id": "rangemap 1.7.1", "target": "rangemap" }, { @@ -19117,10 +19758,6 @@ "id": "sha2 0.10.9", "target": "sha2" }, - { - "id": "simple_asn1 0.6.3", - "target": "simple_asn1" - }, { "id": "stop-token 0.7.0", "target": "stop_token" @@ -19165,7 +19802,7 @@ ], "selects": {} }, - "version": "0.40.1" + "version": "0.45.0" }, "license": "Apache-2.0", "license_ids": [ @@ -19181,7 +19818,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/types/base_types" } @@ -19212,11 +19849,11 @@ "target": "byte_unit" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -19278,14 +19915,14 @@ "license_ids": [], "license_file": null }, - "ic-btc-interface 0.2.3": { + "ic-btc-interface 0.3.0": { "name": "ic-btc-interface", - "version": "0.2.3", + "version": "0.3.0", "package_url": "https://github.com/dfinity/bitcoin-canister", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-btc-interface/0.2.3/download", - "sha256": "eb974b1626d8a45dad7d1e2383829c6b08c5fd53b42d9f0938a51f2f0e057c7e" + "url": "https://static.crates.io/crates/ic-btc-interface/0.3.0/download", + "sha256": "4209c650d166815b01336cbbab6310f44895a0fa6571a952b6a84097e5fd87ae" } }, "targets": [ @@ -19310,7 +19947,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -19329,7 +19966,7 @@ "selects": {} }, "edition": "2021", - "version": "0.2.3" + "version": "0.3.0" }, "license": "Apache-2.0", "license_ids": [ @@ -19345,7 +19982,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/bitcoin/replica_types" } @@ -19372,7 +20009,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -19413,7 +20050,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/canister_client" } @@ -19467,14 +20104,6 @@ "id": "ic-canister-client-sender 0.9.0", "target": "ic_canister_client_sender" }, - { - "id": "ic-canonical-state 0.9.0", - "target": "ic_canonical_state" - }, - { - "id": "ic-certification 0.9.0", - "target": "ic_certification" - }, { "id": "ic-crypto-tree-hash 0.9.0", "target": "ic_crypto_tree_hash" @@ -19511,10 +20140,6 @@ "id": "rustls 0.23.35", "target": "rustls" }, - { - "id": "serde 1.0.228", - "target": "serde" - }, { "id": "serde_cbor 0.11.2", "target": "serde_cbor" @@ -19527,10 +20152,6 @@ "id": "tower 0.5.2", "target": "tower" }, - { - "id": "tree-deserializer 0.9.0", - "target": "tree_deserializer" - }, { "id": "url 2.5.7", "target": "url" @@ -19553,7 +20174,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/canister_client/sender" } @@ -19584,7 +20205,7 @@ "target": "ic_base_types" }, { - "id": "ic-ed25519 0.5.0", + "id": "ic-ed25519 0.6.0", "target": "ic_ed25519" }, { @@ -19621,7 +20242,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rust_canisters/canister_log" } @@ -19671,7 +20292,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rust_canisters/canister_profiler" } @@ -19754,7 +20375,7 @@ "target": "byteorder" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -19906,7 +20527,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/canonical_state" } @@ -20023,7 +20644,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/canonical_state/tree_hash" } @@ -20111,7 +20732,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -20286,7 +20907,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -20417,7 +21038,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/certification" } @@ -20559,7 +21180,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/canonical_state/certification_version" } @@ -20671,7 +21292,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/config" } @@ -20747,7 +21368,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/interfaces/sig_verification" } @@ -20787,166 +21408,6 @@ "license_ids": [], "license_file": null }, - "ic-crypto-internal-basic-sig-der-utils 0.9.0": { - "name": "ic-crypto-internal-basic-sig-der-utils", - "version": "0.9.0", - "package_url": null, - "repository": { - "Git": { - "remote": "https://github.com/dfinity/ic.git", - "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" - }, - "strip_prefix": "rs/crypto/internal/crypto_lib/basic_sig/der_utils" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ic_crypto_internal_basic_sig_der_utils", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ic_crypto_internal_basic_sig_der_utils", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "hex 0.4.3", - "target": "hex" - }, - { - "id": "ic-types 0.9.0", - "target": "ic_types" - }, - { - "id": "simple_asn1 0.6.3", - "target": "simple_asn1" - } - ], - "selects": {} - }, - "edition": "2024", - "version": "0.9.0" - }, - "license": null, - "license_ids": [], - "license_file": null - }, - "ic-crypto-internal-basic-sig-ed25519 0.9.0": { - "name": "ic-crypto-internal-basic-sig-ed25519", - "version": "0.9.0", - "package_url": null, - "repository": { - "Git": { - "remote": "https://github.com/dfinity/ic.git", - "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" - }, - "strip_prefix": "rs/crypto/internal/crypto_lib/basic_sig/ed25519" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ic_crypto_internal_basic_sig_ed25519", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ic_crypto_internal_basic_sig_ed25519", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "base64 0.13.1", - "target": "base64" - }, - { - "id": "curve25519-dalek 4.1.3", - "target": "curve25519_dalek" - }, - { - "id": "hex 0.4.3", - "target": "hex" - }, - { - "id": "ic-crypto-internal-basic-sig-der-utils 0.9.0", - "target": "ic_crypto_internal_basic_sig_der_utils" - }, - { - "id": "ic-crypto-internal-seed 0.9.0", - "target": "ic_crypto_internal_seed" - }, - { - "id": "ic-crypto-internal-types 0.9.0", - "target": "ic_crypto_internal_types" - }, - { - "id": "ic-crypto-secrets-containers 0.9.0", - "target": "ic_crypto_secrets_containers" - }, - { - "id": "ic-ed25519 0.5.0", - "target": "ic_ed25519" - }, - { - "id": "ic-protobuf 0.9.0", - "target": "ic_protobuf" - }, - { - "id": "ic-types 0.9.0", - "target": "ic_types" - }, - { - "id": "rand 0.8.5", - "target": "rand" - }, - { - "id": "rand_chacha 0.3.1", - "target": "rand_chacha" - }, - { - "id": "serde 1.0.228", - "target": "serde" - }, - { - "id": "simple_asn1 0.6.3", - "target": "simple_asn1" - }, - { - "id": "zeroize 1.8.2", - "target": "zeroize" - } - ], - "selects": {} - }, - "edition": "2024", - "version": "0.9.0" - }, - "license": null, - "license_ids": [], - "license_file": null - }, "ic-crypto-internal-bls12-381-type 0.9.0": { "name": "ic-crypto-internal-bls12-381-type", "version": "0.9.0", @@ -20955,7 +21416,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/internal/crypto_lib/bls12_381/type" } @@ -21052,7 +21513,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/internal/crypto_lib/hmac" } @@ -21079,8 +21540,8 @@ "deps": { "common": [ { - "id": "ic-crypto-internal-sha2 0.9.0", - "target": "ic_crypto_internal_sha2" + "id": "ic-crypto-sha2 0.9.0", + "target": "ic_crypto_sha2" } ], "selects": {} @@ -21100,7 +21561,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/internal/crypto_lib/multi_sig/bls12_381" } @@ -21138,6 +21599,10 @@ "id": "ic-crypto-internal-bls12-381-type 0.9.0", "target": "ic_crypto_internal_bls12_381_type" }, + { + "id": "ic-crypto-internal-seed 0.9.0", + "target": "ic_crypto_internal_seed" + }, { "id": "ic-crypto-internal-types 0.9.0", "target": "ic_crypto_internal_types" @@ -21192,7 +21657,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/internal/crypto_lib/seed" } @@ -21252,54 +21717,6 @@ "license_ids": [], "license_file": null }, - "ic-crypto-internal-sha2 0.9.0": { - "name": "ic-crypto-internal-sha2", - "version": "0.9.0", - "package_url": null, - "repository": { - "Git": { - "remote": "https://github.com/dfinity/ic.git", - "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" - }, - "strip_prefix": "rs/crypto/internal/crypto_lib/sha2" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ic_crypto_internal_sha2", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ic_crypto_internal_sha2", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "sha2 0.10.9", - "target": "sha2" - } - ], - "selects": {} - }, - "edition": "2024", - "version": "0.9.0" - }, - "license": null, - "license_ids": [], - "license_file": null - }, "ic-crypto-internal-threshold-sig-bls12381 0.9.0": { "name": "ic-crypto-internal-threshold-sig-bls12381", "version": "0.9.0", @@ -21308,7 +21725,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/internal/crypto_lib/threshold_sig/bls12_381" } @@ -21429,7 +21846,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/internal/crypto_lib/threshold_sig/canister_threshold_sig" } @@ -21566,7 +21983,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/internal/crypto_lib/types" } @@ -21592,10 +22009,6 @@ ], "deps": { "common": [ - { - "id": "arrayvec 0.7.6", - "target": "arrayvec" - }, { "id": "hex 0.4.3", "target": "hex" @@ -21655,7 +22068,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/node_key_validation" } @@ -21689,10 +22102,6 @@ "id": "ic-base-types 0.9.0", "target": "ic_base_types" }, - { - "id": "ic-crypto-internal-basic-sig-ed25519 0.9.0", - "target": "ic_crypto_internal_basic_sig_ed25519" - }, { "id": "ic-crypto-internal-multi-sig-bls12381 0.9.0", "target": "ic_crypto_internal_multi_sig_bls12381" @@ -21713,6 +22122,10 @@ "id": "ic-crypto-tls-cert-validation 0.9.0", "target": "ic_crypto_tls_cert_validation" }, + { + "id": "ic-ed25519 0.6.0", + "target": "ic_ed25519" + }, { "id": "ic-protobuf 0.9.0", "target": "ic_protobuf" @@ -21743,7 +22156,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/secrets_containers" } @@ -21795,7 +22208,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/sha2" } @@ -21822,8 +22235,8 @@ "deps": { "common": [ { - "id": "ic-crypto-internal-sha2 0.9.0", - "target": "ic_crypto_internal_sha2" + "id": "sha2 0.10.9", + "target": "sha2" } ], "selects": {} @@ -21843,7 +22256,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/test_utils/reproducible_rng" } @@ -21895,7 +22308,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/node_key_validation/tls_cert_validation" } @@ -21926,8 +22339,8 @@ "target": "hex" }, { - "id": "ic-crypto-internal-basic-sig-ed25519 0.9.0", - "target": "ic_crypto_internal_basic_sig_ed25519" + "id": "ic-ed25519 0.6.0", + "target": "ic_ed25519" }, { "id": "ic-protobuf 0.9.0", @@ -21963,7 +22376,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/tree_hash" } @@ -22031,7 +22444,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/utils/basic_sig" } @@ -22062,7 +22475,7 @@ "target": "ic_base_types" }, { - "id": "ic-ed25519 0.5.0", + "id": "ic-ed25519 0.6.0", "target": "ic_ed25519" }, { @@ -22087,7 +22500,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/utils/ni_dkg" } @@ -22143,7 +22556,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/utils/threshold_sig" } @@ -22203,7 +22616,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/crypto/utils/threshold_sig_der" } @@ -22229,10 +22642,6 @@ ], "deps": { "common": [ - { - "id": "base64 0.13.1", - "target": "base64" - }, { "id": "ic-crypto-internal-types 0.9.0", "target": "ic_crypto_internal_types" @@ -22241,9 +22650,17 @@ "id": "ic-types 0.9.0", "target": "ic_types" }, + { + "id": "pem 3.0.6", + "target": "pem" + }, { "id": "simple_asn1 0.6.3", "target": "simple_asn1" + }, + { + "id": "thiserror 2.0.17", + "target": "thiserror" } ], "selects": {} @@ -22263,7 +22680,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/ic-dummy-getrandom-for-wasm" } @@ -22317,11 +22734,97 @@ "name": "ic-ed25519", "version": "0.5.0", "package_url": "https://github.com/dfinity/ic", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/ic-ed25519/0.5.0/download", + "sha256": "6b73f85d01b7a3d538353050f1eda546f827ffe7f3ffa35f8e80faa8cff1da10" + } + }, + "targets": [ + { + "Library": { + "crate_name": "ic_ed25519", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "ic_ed25519", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "rand" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "curve25519-dalek 4.1.3", + "target": "curve25519_dalek" + }, + { + "id": "ed25519-dalek 2.2.0", + "target": "ed25519_dalek" + }, + { + "id": "hex-literal 0.4.1", + "target": "hex_literal" + }, + { + "id": "hkdf 0.12.4", + "target": "hkdf" + }, + { + "id": "ic_principal 0.1.1", + "target": "ic_principal" + }, + { + "id": "pem 3.0.6", + "target": "pem" + }, + { + "id": "rand 0.8.5", + "target": "rand" + }, + { + "id": "thiserror 2.0.17", + "target": "thiserror" + }, + { + "id": "zeroize 1.8.2", + "target": "zeroize" + } + ], + "selects": {} + }, + "edition": "2024", + "version": "0.5.0" + }, + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], + "license_file": "LICENSE" + }, + "ic-ed25519 0.6.0": { + "name": "ic-ed25519", + "version": "0.6.0", + "package_url": "https://github.com/dfinity/ic", "repository": { "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/ic-ed25519" } @@ -22394,7 +22897,7 @@ "selects": {} }, "edition": "2024", - "version": "0.5.0" + "version": "0.6.0" }, "license": "Apache-2.0", "license_ids": [ @@ -22470,7 +22973,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/ic-heap-bytes" } @@ -22497,11 +23000,11 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, { @@ -22539,7 +23042,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/ic-heap-bytes-derive" } @@ -22599,7 +23102,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/http_endpoints/async_utils" } @@ -22629,14 +23132,6 @@ "id": "async-stream 0.3.6", "target": "async_stream" }, - { - "id": "byte-unit 4.0.19", - "target": "byte_unit" - }, - { - "id": "bytes 1.10.1", - "target": "bytes" - }, { "id": "futures 0.3.31", "target": "futures" @@ -22683,7 +23178,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/http_endpoints/metrics" } @@ -22710,7 +23205,7 @@ "deps": { "common": [ { - "id": "axum 0.8.6", + "id": "axum 0.8.8", "target": "axum" }, { @@ -22726,25 +23221,17 @@ "target": "ic_metrics" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, { "id": "slog 2.8.2", "target": "slog" }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - }, { "id": "tokio 1.48.0", "target": "tokio" }, - { - "id": "tokio-io-timeout 1.2.1", - "target": "tokio_io_timeout" - }, { "id": "tower 0.5.2", "target": "tower" @@ -22767,7 +23254,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/ic-http-types" } @@ -22794,7 +23281,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -22825,7 +23312,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/ledger_suite/icrc1" } @@ -22858,7 +23345,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -22935,7 +23422,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/ledger_suite/icrc1/index-ng" } @@ -22968,7 +23455,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -23065,7 +23552,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/ledger_suite/icrc1/ledger" } @@ -23116,7 +23603,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -23272,7 +23759,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/ledger_suite/icrc1/test_utils" } @@ -23299,11 +23786,11 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { - "id": "ic-agent 0.40.1", + "id": "ic-agent 0.45.0", "target": "ic_agent" }, { @@ -23311,7 +23798,7 @@ "target": "ic_crypto_test_utils_reproducible_rng" }, { - "id": "ic-ed25519 0.5.0", + "id": "ic-ed25519 0.6.0", "target": "ic_ed25519" }, { @@ -23343,7 +23830,7 @@ "target": "num_traits" }, { - "id": "proptest 1.9.0", + "id": "proptest 1.6.0", "target": "proptest" }, { @@ -23388,7 +23875,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/ledger_suite/icrc1/tokens_u64" } @@ -23415,7 +23902,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -23456,7 +23943,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/interfaces" } @@ -23498,10 +23985,6 @@ "id": "ic-heap-bytes 0.9.0", "target": "ic_heap_bytes" }, - { - "id": "ic-interfaces-state-manager 0.9.0", - "target": "ic_interfaces_state_manager" - }, { "id": "ic-management-canister-types-private 0.9.0", "target": "ic_management_canister_types_private" @@ -23518,10 +24001,6 @@ "id": "ic-registry-subnet-type 0.9.0", "target": "ic_registry_subnet_type" }, - { - "id": "ic-sys 0.9.0", - "target": "ic_sys" - }, { "id": "ic-types 0.9.0", "target": "ic_types" @@ -23534,10 +24013,6 @@ "id": "phantom_newtype 0.9.0", "target": "phantom_newtype" }, - { - "id": "prost 0.13.5", - "target": "prost" - }, { "id": "serde 1.0.228", "target": "serde" @@ -23581,7 +24056,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/interfaces/adapter_client" } @@ -23638,7 +24113,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/interfaces/registry" } @@ -23686,66 +24161,6 @@ "license_ids": [], "license_file": null }, - "ic-interfaces-state-manager 0.9.0": { - "name": "ic-interfaces-state-manager", - "version": "0.9.0", - "package_url": null, - "repository": { - "Git": { - "remote": "https://github.com/dfinity/ic.git", - "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" - }, - "strip_prefix": "rs/interfaces/state_manager" - } - }, - "targets": [ - { - "Library": { - "crate_name": "ic_interfaces_state_manager", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "ic_interfaces_state_manager", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "ic-crypto-tree-hash 0.9.0", - "target": "ic_crypto_tree_hash" - }, - { - "id": "ic-types 0.9.0", - "target": "ic_types" - }, - { - "id": "phantom_newtype 0.9.0", - "target": "phantom_newtype" - }, - { - "id": "thiserror 2.0.17", - "target": "thiserror" - } - ], - "selects": {} - }, - "edition": "2024", - "version": "0.9.0" - }, - "license": null, - "license_ids": [], - "license_file": null - }, "ic-ledger-canister-core 0.9.0": { "name": "ic-ledger-canister-core", "version": "0.9.0", @@ -23754,7 +24169,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/ledger_suite/common/ledger_canister_core" } @@ -23781,7 +24196,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -23851,7 +24266,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/ledger_suite/common/ledger_core" } @@ -23878,7 +24293,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -23923,7 +24338,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/ic-ledger-hash-of" } @@ -23950,7 +24365,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -23981,7 +24396,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/limits" } @@ -24020,7 +24435,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/monitoring/logger" } @@ -24062,10 +24477,6 @@ "id": "ic-utils 0.9.0", "target": "ic_utils" }, - { - "id": "serde 1.0.228", - "target": "serde" - }, { "id": "slog 2.8.2", "target": "slog" @@ -24135,7 +24546,7 @@ "target": "backon" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -24372,7 +24783,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -24403,7 +24814,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/types/management_canister_types" } @@ -24430,7 +24841,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -24438,7 +24849,7 @@ "target": "ic_base_types" }, { - "id": "ic-btc-interface 0.2.3", + "id": "ic-btc-interface 0.3.0", "target": "ic_btc_interface" }, { @@ -24535,7 +24946,7 @@ "target": "anyhow" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -24640,7 +25051,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/monitoring/metrics" } @@ -24683,13 +25094,9 @@ "target": "parking_lot" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, - { - "id": "tokio 1.48.0", - "target": "tokio" - }, { "id": "tokio-metrics 0.4.5", "target": "tokio_metrics" @@ -24698,7 +25105,7 @@ "selects": { "cfg(target_os = \"linux\")": [ { - "id": "procfs 0.9.1", + "id": "procfs 0.17.0", "target": "procfs" } ] @@ -24757,7 +25164,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/access_list" } @@ -24796,7 +25203,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/canisters" } @@ -24823,7 +25230,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -24873,6 +25280,10 @@ { "id": "prost 0.13.5", "target": "prost" + }, + { + "id": "rust_decimal 1.39.0", + "target": "rust_decimal" } ], "selects": {} @@ -24901,7 +25312,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/chunks" } @@ -24961,7 +25372,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/clients" } @@ -24988,13 +25399,9 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, - { - "id": "dfn_candid 0.9.0", - "target": "dfn_candid" - }, { "id": "dfn_core 0.9.0", "target": "dfn_core" @@ -25040,7 +25447,7 @@ "target": "icrc_ledger_client" }, { - "id": "icrc-ledger-client-cdk 0.1.3", + "id": "icrc-ledger-client-cdk 0.1.4", "target": "icrc_ledger_client_cdk" }, { @@ -25082,7 +25489,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/collections/union_multi_map" } @@ -25121,7 +25528,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/common" } @@ -25163,16 +25570,12 @@ "id": "base64 0.13.1", "target": "base64" }, - { - "id": "build-info 0.0.27", - "target": "build_info" - }, { "id": "by_address 1.2.1", "target": "by_address" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -25207,14 +25610,6 @@ "id": "ic-nervous-system-common 0.9.0", "target": "build_script_build" }, - { - "id": "ic-nervous-system-runtime 0.9.0", - "target": "ic_nervous_system_runtime" - }, - { - "id": "ic-nns-constants 0.9.0", - "target": "ic_nns_constants" - }, { "id": "ic-stable-structures 0.6.9", "target": "ic_stable_structures" @@ -25223,10 +25618,6 @@ "id": "icp-ledger 0.9.0", "target": "icp_ledger" }, - { - "id": "icrc-ledger-types 0.1.12", - "target": "icrc_ledger_types" - }, { "id": "json5 0.4.1", "target": "json5" @@ -25239,10 +25630,6 @@ "id": "maplit 1.0.2", "target": "maplit" }, - { - "id": "mockall 0.13.1", - "target": "mockall" - }, { "id": "num-traits 0.2.19", "target": "num_traits" @@ -25271,15 +25658,6 @@ "selects": {} }, "edition": "2024", - "proc_macro_deps": { - "common": [ - { - "id": "async-trait 0.1.89", - "target": "async_trait" - } - ], - "selects": {} - }, "version": "0.9.0" }, "build_script_attrs": { @@ -25314,7 +25692,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/common/build_metadata" } @@ -25353,7 +25731,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/common/test_keys" } @@ -25421,7 +25799,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/common/validation" } @@ -25460,7 +25838,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/governance" } @@ -25524,7 +25902,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/initial_supply" } @@ -25551,7 +25929,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -25601,7 +25979,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/linear_map" } @@ -25649,7 +26027,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/lock" } @@ -25688,7 +26066,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/long_message" } @@ -25715,7 +26093,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -25751,7 +26129,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/proto" } @@ -25778,7 +26156,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -25819,7 +26197,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/proxied_canister_calls_tracker" } @@ -25871,7 +26249,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/rate_limits" } @@ -25923,7 +26301,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/root" } @@ -25950,13 +26328,17 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { "id": "dfn_core 0.9.0", "target": "dfn_core" }, + { + "id": "ic-base-types 0.9.0", + "target": "ic_base_types" + }, { "id": "ic-cdk 0.19.0", "target": "ic_cdk" @@ -26007,7 +26389,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/runtime" } @@ -26034,7 +26416,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -26080,7 +26462,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/string" } @@ -26119,7 +26501,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/temporary" } @@ -26158,7 +26540,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/time_helpers" } @@ -26206,7 +26588,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/timer_task" } @@ -26233,7 +26615,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -26287,7 +26669,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/timers" } @@ -26339,7 +26721,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/timestamp" } @@ -26387,7 +26769,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nervous_system/neurons_fund" } @@ -26464,7 +26846,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nns/common" } @@ -26491,7 +26873,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -26506,18 +26888,10 @@ "id": "ic-cdk 0.19.0", "target": "ic_cdk" }, - { - "id": "ic-crypto-sha2 0.9.0", - "target": "ic_crypto_sha2" - }, { "id": "ic-nervous-system-canisters 0.9.0", "target": "ic_nervous_system_canisters" }, - { - "id": "ic-nervous-system-common 0.9.0", - "target": "ic_nervous_system_common" - }, { "id": "ic-nns-constants 0.9.0", "target": "ic_nns_constants" @@ -26538,14 +26912,6 @@ "id": "ic-stable-structures 0.6.9", "target": "ic_stable_structures" }, - { - "id": "ic-types 0.9.0", - "target": "ic_types" - }, - { - "id": "lazy_static 1.5.0", - "target": "lazy_static" - }, { "id": "num-traits 0.2.19", "target": "num_traits" @@ -26561,10 +26927,6 @@ { "id": "serde_bytes 0.11.19", "target": "serde_bytes" - }, - { - "id": "sha2 0.10.9", - "target": "sha2" } ], "selects": {} @@ -26584,7 +26946,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nns/constants" } @@ -26636,7 +26998,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nns/governance" } @@ -26679,11 +27041,7 @@ "target": "build_info" }, { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -26839,8 +27197,8 @@ "target": "ic_nns_governance_init" }, { - "id": "ic-nns-gtc-accounts 0.9.0", - "target": "ic_nns_gtc_accounts" + "id": "ic-nns-handler-lifeline-interface 0.1.0", + "target": "ic_nns_handler_lifeline_interface" }, { "id": "ic-nns-handler-root-interface 0.1.0", @@ -26914,10 +27272,6 @@ "id": "num-traits 0.2.19", "target": "num_traits" }, - { - "id": "on_wire 0.9.0", - "target": "on_wire" - }, { "id": "pretty_assertions 1.4.1", "target": "pretty_assertions" @@ -26954,10 +27308,6 @@ "id": "serde_bytes 0.11.19", "target": "serde_bytes" }, - { - "id": "serde_json 1.0.145", - "target": "serde_json" - }, { "id": "strum 0.26.3", "target": "strum" @@ -26987,6 +27337,10 @@ "id": "ic-nervous-system-common-build-metadata 0.9.0", "target": "ic_nervous_system_common_build_metadata" }, + { + "id": "ic-nns-governance-derive-self-describing 0.9.0", + "target": "ic_nns_governance_derive_self_describing" + }, { "id": "rust_decimal_macros 1.39.0", "target": "rust_decimal_macros" @@ -27041,7 +27395,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nns/governance/api" } @@ -27068,17 +27422,9 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", - "target": "bytes" - }, - { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, - { - "id": "comparable 0.5.5", - "target": "comparable" - }, { "id": "hex 0.4.3", "target": "hex" @@ -27091,10 +27437,6 @@ "id": "ic-crypto-sha2 0.9.0", "target": "ic_crypto_sha2" }, - { - "id": "ic-nervous-system-clients 0.0.1", - "target": "ic_nervous_system_clients" - }, { "id": "ic-nervous-system-common 0.9.0", "target": "ic_nervous_system_common" @@ -27111,22 +27453,10 @@ "id": "ic-nns-common 0.9.0", "target": "ic_nns_common" }, - { - "id": "ic-protobuf 0.9.0", - "target": "ic_protobuf" - }, - { - "id": "ic-sns-root 0.9.0", - "target": "ic_sns_root" - }, { "id": "ic-sns-swap 0.9.0", "target": "ic_sns_swap" }, - { - "id": "ic-types 0.9.0", - "target": "ic_types" - }, { "id": "ic-utils 0.9.0", "target": "ic_utils" @@ -27135,10 +27465,6 @@ "id": "icp-ledger 0.9.0", "target": "icp_ledger" }, - { - "id": "itertools 0.12.1", - "target": "itertools" - }, { "id": "prost 0.13.5", "target": "prost" @@ -27174,6 +27500,62 @@ "license_ids": [], "license_file": null }, + "ic-nns-governance-derive-self-describing 0.9.0": { + "name": "ic-nns-governance-derive-self-describing", + "version": "0.9.0", + "package_url": null, + "repository": { + "Git": { + "remote": "https://github.com/dfinity/ic.git", + "commitish": { + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" + }, + "strip_prefix": "rs/nns/governance/derive_self_describing" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "ic_nns_governance_derive_self_describing", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "ic_nns_governance_derive_self_describing", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.103", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.42", + "target": "quote" + }, + { + "id": "syn 2.0.110", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2024", + "version": "0.9.0" + }, + "license": null, + "license_ids": [], + "license_file": null + }, "ic-nns-governance-init 0.9.0": { "name": "ic-nns-governance-init", "version": "0.9.0", @@ -27182,7 +27564,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nns/governance/init" } @@ -27251,38 +27633,29 @@ } }, "edition": "2024", - "proc_macro_deps": { - "common": [ - { - "id": "ic-nervous-system-common-build-metadata 0.9.0", - "target": "ic_nervous_system_common_build_metadata" - } - ], - "selects": {} - }, "version": "0.9.0" }, "license": null, "license_ids": [], "license_file": null }, - "ic-nns-gtc-accounts 0.9.0": { - "name": "ic-nns-gtc-accounts", - "version": "0.9.0", + "ic-nns-handler-lifeline-interface 0.1.0": { + "name": "ic-nns-handler-lifeline-interface", + "version": "0.1.0", "package_url": null, "repository": { "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, - "strip_prefix": "rs/nns/gtc_accounts" + "strip_prefix": "rs/nns/handlers/lifeline/interface" } }, "targets": [ { "Library": { - "crate_name": "ic_nns_gtc_accounts", + "crate_name": "ic_nns_handler_lifeline_interface", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -27293,13 +27666,30 @@ } } ], - "library_target_name": "ic_nns_gtc_accounts", + "library_target_name": "ic_nns_handler_lifeline_interface", "common_attrs": { "compile_data_glob": [ "**" ], + "deps": { + "common": [ + { + "id": "candid 0.10.24", + "target": "candid" + }, + { + "id": "ic-crypto-sha2 0.9.0", + "target": "ic_crypto_sha2" + }, + { + "id": "serde 1.0.228", + "target": "serde" + } + ], + "selects": {} + }, "edition": "2024", - "version": "0.9.0" + "version": "0.1.0" }, "license": null, "license_ids": [], @@ -27313,7 +27703,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nns/handlers/root/interface" } @@ -27340,7 +27730,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -27351,10 +27741,18 @@ "id": "ic-cdk 0.19.0", "target": "ic_cdk" }, + { + "id": "ic-management-canister-types-private 0.9.0", + "target": "ic_management_canister_types_private" + }, { "id": "ic-nervous-system-clients 0.0.1", "target": "ic_nervous_system_clients" }, + { + "id": "ic-nervous-system-root 0.9.0", + "target": "ic_nervous_system_root" + }, { "id": "ic-nns-constants 0.9.0", "target": "ic_nns_constants" @@ -27390,7 +27788,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/node_rewards/canister/api" } @@ -27417,7 +27815,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -27466,7 +27864,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/protobuf" } @@ -27497,9 +27895,13 @@ "target": "bincode" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, + { + "id": "comparable 0.5.5", + "target": "comparable" + }, { "id": "erased-serde 0.3.31", "target": "erased_serde" @@ -27546,7 +27948,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/canister_client/read_state_response_parser" } @@ -27618,7 +28020,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/canister/api" } @@ -27645,9 +28047,17 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "attestation 0.0.0", + "target": "attestation" + }, + { + "id": "candid 0.10.24", "target": "candid" }, + { + "id": "der 0.7.10", + "target": "der" + }, { "id": "ic-base-types 0.9.0", "target": "ic_base_types" @@ -27690,7 +28100,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/canister/chunkify" } @@ -27754,7 +28164,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/client" } @@ -27801,7 +28211,7 @@ "target": "ic_utils_thread" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" } ], @@ -27822,7 +28232,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/fake" } @@ -27874,7 +28284,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/helpers" } @@ -27970,7 +28380,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/proto" } @@ -28018,7 +28428,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/keys" } @@ -28045,7 +28455,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -28086,7 +28496,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/local_registry" } @@ -28174,7 +28584,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/local_store" } @@ -28238,7 +28648,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/local_store/artifacts" } @@ -28277,7 +28687,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/nns_data_provider" } @@ -28304,7 +28714,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -28394,7 +28804,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/node_provider_rewards" } @@ -28450,7 +28860,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/provisional_whitelist" } @@ -28502,7 +28912,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/routing_table" } @@ -28529,7 +28939,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -28562,7 +28972,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/subnet_features" } @@ -28589,7 +28999,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -28622,7 +29032,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/subnet_type" } @@ -28649,7 +29059,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -28691,7 +29101,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/transport" } @@ -28718,7 +29128,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -28772,7 +29182,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/replicated_state" } @@ -28903,19 +29313,19 @@ "target": "maplit" }, { - "id": "nix 0.24.3", - "target": "nix" + "id": "more-asserts 0.3.1", + "target": "more_asserts" }, { - "id": "num-traits 0.2.19", - "target": "num_traits" + "id": "nix 0.24.3", + "target": "nix" }, { "id": "phantom_newtype 0.9.0", "target": "phantom_newtype" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, { @@ -28985,7 +29395,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/ic-secp256k1" } @@ -29075,7 +29485,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/governance" } @@ -29122,7 +29532,7 @@ "target": "build_info" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -29421,7 +29831,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/governance/api" } @@ -29448,11 +29858,11 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -29542,7 +29952,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/governance/proposal_criticality" } @@ -29590,7 +30000,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/governance/proposals_amount_total_limit" } @@ -29655,7 +30065,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/governance/token_valuation" } @@ -29682,7 +30092,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -29764,7 +30174,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/init" } @@ -29795,7 +30205,7 @@ "target": "base64" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -29892,7 +30302,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/root" } @@ -29935,7 +30345,7 @@ "target": "build_info" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -30074,7 +30484,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/swap" } @@ -30117,7 +30527,7 @@ "target": "build_info" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -30292,7 +30702,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/swap/proto_library" } @@ -30319,7 +30729,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -30368,7 +30778,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/nns/sns-wasm" } @@ -30395,7 +30805,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -30576,7 +30986,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sys" } @@ -30697,7 +31107,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -30753,14 +31163,14 @@ ], "license_file": null }, - "ic-transport-types 0.40.1": { + "ic-transport-types 0.45.0": { "name": "ic-transport-types", - "version": "0.40.1", + "version": "0.45.0", "package_url": "https://github.com/dfinity/agent-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-transport-types/0.40.1/download", - "sha256": "a2e7706e55836e8104c98149ec0796d20d5213fef972ac01b544657d410f1883" + "url": "https://static.crates.io/crates/ic-transport-types/0.45.0/download", + "sha256": "4a775244756a5d97ff19b08071a946a4b4896904e35deb036bf215e80f2e703d" } }, "targets": [ @@ -30785,7 +31195,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -30833,7 +31243,7 @@ ], "selects": {} }, - "version": "0.40.1" + "version": "0.45.0" }, "license": "Apache-2.0", "license_ids": [ @@ -30849,7 +31259,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/types/types" } @@ -30884,7 +31294,7 @@ "target": "bincode" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -31029,7 +31439,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/utils" } @@ -31113,7 +31523,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -31193,7 +31603,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/utils/thread" } @@ -31241,7 +31651,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/utils/validate_eq" } @@ -31289,7 +31699,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/utils/validate_eq_derive" } @@ -31315,10 +31725,6 @@ ], "deps": { "common": [ - { - "id": "proc-macro2 1.0.103", - "target": "proc_macro2" - }, { "id": "quote 1.0.42", "target": "quote" @@ -31414,6 +31820,84 @@ ], "license_file": null }, + "ic-verify-bls-signature 0.6.0": { + "name": "ic-verify-bls-signature", + "version": "0.6.0", + "package_url": null, + "repository": { + "Http": { + "url": "https://static.crates.io/crates/ic-verify-bls-signature/0.6.0/download", + "sha256": "cd6c4261586eb473fe1219de63186a98e554985d5fd6f3488036c8fb82452e27" + } + }, + "targets": [ + { + "Library": { + "crate_name": "ic_verify_bls_signature", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "ic_verify_bls_signature", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default", + "hex", + "lazy_static", + "rand" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "hex 0.4.3", + "target": "hex" + }, + { + "id": "ic_bls12_381 0.10.1", + "target": "ic_bls12_381", + "alias": "bls12_381" + }, + { + "id": "lazy_static 1.5.0", + "target": "lazy_static" + }, + { + "id": "pairing 0.23.0", + "target": "pairing" + }, + { + "id": "rand 0.8.5", + "target": "rand" + }, + { + "id": "sha2 0.10.9", + "target": "sha2" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.6.0" + }, + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], + "license_file": null + }, "ic-wasm 0.8.6": { "name": "ic-wasm", "version": "0.8.6", @@ -31459,7 +31943,7 @@ "target": "anyhow" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -31510,7 +31994,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/types/wasm_types" } @@ -31615,7 +32099,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -31842,7 +32326,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/ledger_suite/icp" } @@ -31869,7 +32353,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -31920,10 +32404,6 @@ "id": "icrc-ledger-types 0.1.12", "target": "icrc_ledger_types" }, - { - "id": "lazy_static 1.5.0", - "target": "lazy_static" - }, { "id": "on_wire 0.9.0", "target": "on_wire" @@ -31943,10 +32423,6 @@ { "id": "serde_cbor 0.11.2", "target": "serde_cbor" - }, - { - "id": "strum 0.26.3", - "target": "strum" } ], "selects": {} @@ -31975,7 +32451,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/icrc-cbor" } @@ -32008,7 +32484,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -32043,7 +32519,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/icrc-ledger-client" } @@ -32070,7 +32546,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -32098,15 +32574,15 @@ ], "license_file": "LICENSE" }, - "icrc-ledger-client-cdk 0.1.3": { + "icrc-ledger-client-cdk 0.1.4": { "name": "icrc-ledger-client-cdk", - "version": "0.1.3", + "version": "0.1.4", "package_url": "https://github.com/dfinity/ic", "repository": { "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/icrc-ledger-client-cdk" } @@ -32133,7 +32609,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -32157,7 +32633,7 @@ ], "selects": {} }, - "version": "0.1.3" + "version": "0.1.4" }, "license": "Apache-2.0", "license_ids": [ @@ -32173,7 +32649,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "packages/icrc-ledger-types" } @@ -32204,7 +32680,7 @@ "target": "base32" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -32223,10 +32699,6 @@ "id": "icrc-cbor 0.1.0", "target": "icrc_cbor" }, - { - "id": "itertools 0.12.1", - "target": "itertools" - }, { "id": "minicbor 0.19.1", "target": "minicbor" @@ -33301,6 +33773,44 @@ ], "license_file": "LICENSE" }, + "iocuddle 0.1.1": { + "name": "iocuddle", + "version": "0.1.1", + "package_url": "https://github.com/enarx/iocuddle", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/iocuddle/0.1.1/download", + "sha256": "d8972d5be69940353d5347a1344cb375d9b457d6809b428b05bb1ca2fb9ce007" + } + }, + "targets": [ + { + "Library": { + "crate_name": "iocuddle", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "iocuddle", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2018", + "version": "0.1.1" + }, + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], + "license_file": "LICENSE" + }, "ipnet 2.11.0": { "name": "ipnet", "version": "2.11.0", @@ -34711,64 +35221,20 @@ "**" ], "crate_features": { - "common": [], - "selects": { - "aarch64-apple-darwin": [ - "spin", - "spin_no_std" - ], - "aarch64-unknown-linux-gnu": [ - "spin", - "spin_no_std" - ], - "x86_64-pc-windows-msvc": [ - "spin", - "spin_no_std" - ], - "x86_64-unknown-linux-gnu": [ - "spin", - "spin_no_std" - ], - "x86_64-unknown-nixos-gnu": [ - "spin", - "spin_no_std" - ] - } + "common": [ + "spin", + "spin_no_std" + ], + "selects": {} }, "deps": { - "common": [], - "selects": { - "aarch64-apple-darwin": [ - { - "id": "spin 0.9.8", - "target": "spin" - } - ], - "aarch64-unknown-linux-gnu": [ - { - "id": "spin 0.9.8", - "target": "spin" - } - ], - "x86_64-pc-windows-msvc": [ - { - "id": "spin 0.9.8", - "target": "spin" - } - ], - "x86_64-unknown-linux-gnu": [ - { - "id": "spin 0.9.8", - "target": "spin" - } - ], - "x86_64-unknown-nixos-gnu": [ - { - "id": "spin 0.9.8", - "target": "spin" - } - ] - } + "common": [ + { + "id": "spin 0.9.8", + "target": "spin" + } + ], + "selects": {} }, "edition": "2015", "version": "1.5.0" @@ -35769,7 +36235,7 @@ "deps": { "common": [ { - "id": "axum 0.8.6", + "id": "axum 0.8.8", "target": "axum" }, { @@ -37042,6 +37508,47 @@ ], "license_file": "LICENSE-APACHE" }, + "more-asserts 0.3.1": { + "name": "more-asserts", + "version": "0.3.1", + "package_url": "https://github.com/thomcc/rust-more-asserts", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/more-asserts/0.3.1/download", + "sha256": "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "more_asserts", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "more_asserts", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2018", + "version": "0.3.1" + }, + "license": "Unlicense OR MIT OR Apache-2.0 OR CC0-1.0", + "license_ids": [ + "Apache-2.0", + "CC0-1.0", + "MIT", + "Unlicense" + ], + "license_file": "LICENSE-APACHE" + }, "multimap 0.10.1": { "name": "multimap", "version": "0.10.1", @@ -37095,11 +37602,11 @@ "deps": { "common": [ { - "id": "axum 0.8.6", + "id": "axum 0.8.8", "target": "axum" }, { - "id": "axum-otel-metrics 0.10.0", + "id": "axum-otel-metrics 0.11.0", "target": "axum_otel_metrics" }, { @@ -37147,19 +37654,19 @@ "target": "ic_types" }, { - "id": "opentelemetry 0.28.0", + "id": "opentelemetry 0.29.1", "target": "opentelemetry" }, { - "id": "opentelemetry-prometheus 0.28.0", + "id": "opentelemetry-prometheus 0.29.1", "target": "opentelemetry_prometheus" }, { - "id": "opentelemetry_sdk 0.28.0", + "id": "opentelemetry_sdk 0.29.0", "target": "opentelemetry_sdk" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, { @@ -37633,14 +38140,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num-bigint-dig 0.8.5": { + "num-bigint-dig 0.8.6": { "name": "num-bigint-dig", - "version": "0.8.5", + "version": "0.8.6", "package_url": "https://github.com/dignifiedquire/num-bigint", "repository": { "Http": { - "url": "https://static.crates.io/crates/num-bigint-dig/0.8.5/download", - "sha256": "82c79c15c05d4bf82b6f5ef163104cc81a760d8e874d38ac50ab67c8877b647b" + "url": "https://static.crates.io/crates/num-bigint-dig/0.8.6/download", + "sha256": "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" } }, "targets": [ @@ -37676,12 +38183,11 @@ ], "crate_features": { "common": [ - "default", + "i128", "prime", "rand", - "serde", - "std", - "u64_digit" + "u64_digit", + "zeroize" ], "selects": {} }, @@ -37696,7 +38202,7 @@ "target": "libm" }, { - "id": "num-bigint-dig 0.8.5", + "id": "num-bigint-dig 0.8.6", "target": "build_script_build" }, { @@ -37715,6 +38221,120 @@ "id": "rand 0.8.5", "target": "rand" }, + { + "id": "smallvec 1.15.1", + "target": "smallvec" + }, + { + "id": "zeroize 1.8.2", + "target": "zeroize" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.8.6" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "num-bigint-dig 0.9.1": { + "name": "num-bigint-dig", + "version": "0.9.1", + "package_url": "https://github.com/dignifiedquire/num-bigint", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/num-bigint-dig/0.9.1/download", + "sha256": "a7f9a86e097b0d187ad0e65667c2f58b9254671e86e7dbb78036b16692eae099" + } + }, + "targets": [ + { + "Library": { + "crate_name": "num_bigint_dig", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "num_bigint_dig", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "prime", + "rand", + "serde", + "std", + "u64_digit" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "libm 0.2.15", + "target": "libm" + }, + { + "id": "num-bigint-dig 0.9.1", + "target": "build_script_build" + }, + { + "id": "num-integer 0.1.46", + "target": "num_integer" + }, + { + "id": "num-iter 0.1.45", + "target": "num_iter" + }, + { + "id": "num-traits 0.2.19", + "target": "num_traits" + }, + { + "id": "once_cell 1.21.3", + "target": "once_cell" + }, + { + "id": "rand 0.9.2", + "target": "rand" + }, { "id": "serde 1.0.228", "target": "serde" @@ -37727,7 +38347,7 @@ "selects": {} }, "edition": "2021", - "version": "0.8.5" + "version": "0.9.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -38177,7 +38797,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -38269,7 +38889,7 @@ "target": "base64" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -38501,7 +39121,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rust_canisters/on_wire" } @@ -38703,14 +39323,14 @@ ], "license_file": "LICENSE-APACHE" }, - "opentelemetry 0.28.0": { + "opentelemetry 0.29.1": { "name": "opentelemetry", - "version": "0.28.0", - "package_url": "https://github.com/open-telemetry/opentelemetry-rust", + "version": "0.29.1", + "package_url": "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry", "repository": { "Http": { - "url": "https://static.crates.io/crates/opentelemetry/0.28.0/download", - "sha256": "236e667b670a5cdf90c258f5a55794ec5ac5027e960c224bff8367a59e1e6426" + "url": "https://static.crates.io/crates/opentelemetry/0.29.1/download", + "sha256": "9e87237e2775f74896f9ad219d26a2081751187eb7c9f5c58dde20a23b95d16c" } }, "targets": [ @@ -38735,6 +39355,7 @@ "crate_features": { "common": [ "default", + "futures", "futures-core", "futures-sink", "internal-logs", @@ -38780,7 +39401,7 @@ } }, "edition": "2021", - "version": "0.28.0" + "version": "0.29.1" }, "license": "Apache-2.0", "license_ids": [ @@ -38788,14 +39409,14 @@ ], "license_file": "LICENSE" }, - "opentelemetry-prometheus 0.28.0": { + "opentelemetry-prometheus 0.29.1": { "name": "opentelemetry-prometheus", - "version": "0.28.0", - "package_url": "https://github.com/open-telemetry/opentelemetry-rust", + "version": "0.29.1", + "package_url": "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-prometheus", "repository": { "Http": { - "url": "https://static.crates.io/crates/opentelemetry-prometheus/0.28.0/download", - "sha256": "765a76ba13ec77043903322f85dc5434d7d01a37e75536d0f871ed7b9b5bbf0d" + "url": "https://static.crates.io/crates/opentelemetry-prometheus/0.29.1/download", + "sha256": "098a71a4430bb712be6130ed777335d2e5b19bc8566de5f2edddfce906def6ab" } }, "targets": [ @@ -38832,21 +39453,17 @@ "target": "once_cell" }, { - "id": "opentelemetry 0.28.0", + "id": "opentelemetry 0.29.1", "target": "opentelemetry" }, { - "id": "opentelemetry_sdk 0.28.0", + "id": "opentelemetry_sdk 0.29.0", "target": "opentelemetry_sdk" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, - { - "id": "protobuf 2.28.0", - "target": "protobuf" - }, { "id": "tracing 0.1.41", "target": "tracing" @@ -38855,7 +39472,7 @@ "selects": {} }, "edition": "2021", - "version": "0.28.0" + "version": "0.29.1" }, "license": "Apache-2.0", "license_ids": [ @@ -38863,14 +39480,14 @@ ], "license_file": "LICENSE" }, - "opentelemetry-semantic-conventions 0.28.0": { + "opentelemetry-semantic-conventions 0.29.0": { "name": "opentelemetry-semantic-conventions", - "version": "0.28.0", + "version": "0.29.0", "package_url": "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-semantic-conventions", "repository": { "Http": { - "url": "https://static.crates.io/crates/opentelemetry-semantic-conventions/0.28.0/download", - "sha256": "2fb3a2f78c2d55362cd6c313b8abedfbc0142ab3c2676822068fd2ab7d51f9b7" + "url": "https://static.crates.io/crates/opentelemetry-semantic-conventions/0.29.0/download", + "sha256": "84b29a9f89f1a954936d5aa92f19b2feec3c8f3971d3e96206640db7f9706ae3" } }, "targets": [ @@ -38900,7 +39517,7 @@ "selects": {} }, "edition": "2021", - "version": "0.28.0" + "version": "0.29.0" }, "license": "Apache-2.0", "license_ids": [ @@ -38908,14 +39525,14 @@ ], "license_file": "LICENSE" }, - "opentelemetry_sdk 0.28.0": { + "opentelemetry_sdk 0.29.0": { "name": "opentelemetry_sdk", - "version": "0.28.0", - "package_url": "https://github.com/open-telemetry/opentelemetry-rust", + "version": "0.29.0", + "package_url": "https://github.com/open-telemetry/opentelemetry-rust/tree/main/opentelemetry-sdk", "repository": { "Http": { - "url": "https://static.crates.io/crates/opentelemetry_sdk/0.28.0/download", - "sha256": "84dfad6042089c7fc1f6118b7040dc2eb4ab520abbf410b79dc481032af39570" + "url": "https://static.crates.io/crates/opentelemetry_sdk/0.29.0/download", + "sha256": "afdefb21d1d47394abc1ba6c57363ab141be19e27cc70d0e422b7f303e4d290b" } }, "targets": [ @@ -38939,7 +39556,6 @@ ], "crate_features": { "common": [ - "async-trait", "default", "glob", "internal-logs", @@ -38972,7 +39588,7 @@ "target": "glob" }, { - "id": "opentelemetry 0.28.0", + "id": "opentelemetry 0.29.1", "target": "opentelemetry" }, { @@ -38980,7 +39596,7 @@ "target": "percent_encoding" }, { - "id": "rand 0.8.5", + "id": "rand 0.9.2", "target": "rand" }, { @@ -38999,16 +39615,7 @@ "selects": {} }, "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "async-trait 0.1.89", - "target": "async_trait" - } - ], - "selects": {} - }, - "version": "0.28.0" + "version": "0.29.0" }, "license": "Apache-2.0", "license_ids": [ @@ -39131,6 +39738,84 @@ ], "license_file": "LICENSE-APACHE" }, + "p384 0.13.1": { + "name": "p384", + "version": "0.13.1", + "package_url": "https://github.com/RustCrypto/elliptic-curves/tree/master/p384", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/p384/0.13.1/download", + "sha256": "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "p384", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "p384", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "arithmetic", + "default", + "digest", + "ecdh", + "ecdsa", + "ecdsa-core", + "pem", + "pkcs8", + "sha2", + "sha384", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "ecdsa 0.16.9", + "target": "ecdsa", + "alias": "ecdsa_core" + }, + { + "id": "elliptic-curve 0.13.8", + "target": "elliptic_curve" + }, + { + "id": "primeorder 0.13.6", + "target": "primeorder" + }, + { + "id": "sha2 0.10.9", + "target": "sha2" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.13.1" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "pairing 0.23.0": { "name": "pairing", "version": "0.23.0", @@ -40077,7 +40762,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/phantom_newtype" } @@ -40104,7 +40789,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -40407,6 +41092,72 @@ ], "license_file": "LICENSE-APACHE" }, + "pkcs1 0.7.5": { + "name": "pkcs1", + "version": "0.7.5", + "package_url": "https://github.com/RustCrypto/formats/tree/master/pkcs1", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/pkcs1/0.7.5/download", + "sha256": "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" + } + }, + "targets": [ + { + "Library": { + "crate_name": "pkcs1", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "pkcs1", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "pem", + "pkcs8", + "std", + "zeroize" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "der 0.7.10", + "target": "der" + }, + { + "id": "pkcs8 0.10.2", + "target": "pkcs8" + }, + { + "id": "spki 0.7.3", + "target": "spki" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.7.5" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "pkcs8 0.10.2": { "name": "pkcs8", "version": "0.10.2", @@ -41897,82 +42648,14 @@ ], "license_file": "LICENSE-APACHE" }, - "procfs 0.9.1": { + "procfs 0.17.0": { "name": "procfs", - "version": "0.9.1", + "version": "0.17.0", "package_url": "https://github.com/eminence/procfs", "repository": { "Http": { - "url": "https://static.crates.io/crates/procfs/0.9.1/download", - "sha256": "ab8809e0c18450a2db0f236d2a44ec0b4c1412d0eb936233579f0990faa5d5cd" - } - }, - "targets": [ - { - "Library": { - "crate_name": "procfs", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "procfs", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "bitflags 1.3.2", - "target": "bitflags" - }, - { - "id": "byteorder 1.5.0", - "target": "byteorder" - }, - { - "id": "flate2 1.1.5", - "target": "flate2" - }, - { - "id": "hex 0.4.3", - "target": "hex" - }, - { - "id": "lazy_static 1.5.0", - "target": "lazy_static" - }, - { - "id": "libc 0.2.177", - "target": "libc" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.9.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, - "procfs 0.16.0": { - "name": "procfs", - "version": "0.16.0", - "package_url": "https://github.com/eminence/procfs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/procfs/0.16.0/download", - "sha256": "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4" + "url": "https://static.crates.io/crates/procfs/0.17.0/download", + "sha256": "cc5b72d8145275d844d4b5f6d4e1eef00c8cd889edb6035c21675d1bb1f45c9f" } }, "targets": [ @@ -42017,15 +42700,11 @@ "target": "hex" }, { - "id": "lazy_static 1.5.0", - "target": "lazy_static" - }, - { - "id": "procfs 0.16.0", + "id": "procfs 0.17.0", "target": "build_script_build" }, { - "id": "procfs-core 0.16.0", + "id": "procfs-core 0.17.0", "target": "procfs_core" }, { @@ -42036,7 +42715,7 @@ "selects": {} }, "edition": "2018", - "version": "0.16.0" + "version": "0.17.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -42054,16 +42733,16 @@ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, - "procfs-core 0.16.0": { + "procfs-core 0.17.0": { "name": "procfs-core", - "version": "0.16.0", + "version": "0.17.0", "package_url": "https://github.com/eminence/procfs", "repository": { "Http": { - "url": "https://static.crates.io/crates/procfs-core/0.16.0/download", - "sha256": "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29" + "url": "https://static.crates.io/crates/procfs-core/0.17.0/download", + "sha256": "239df02d8349b06fc07398a3a1697b06418223b1c7725085e801e7c0fc6a12ec" } }, "targets": [ @@ -42099,23 +42778,23 @@ "selects": {} }, "edition": "2018", - "version": "0.16.0" + "version": "0.17.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, - "prometheus 0.13.4": { + "prometheus 0.14.0": { "name": "prometheus", - "version": "0.13.4", + "version": "0.14.0", "package_url": "https://github.com/tikv/rust-prometheus", "repository": { "Http": { - "url": "https://static.crates.io/crates/prometheus/0.13.4/download", - "sha256": "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" + "url": "https://static.crates.io/crates/prometheus/0.14.0/download", + "sha256": "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" } }, "targets": [ @@ -42186,41 +42865,41 @@ "target": "parking_lot" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "build_script_build" }, { - "id": "protobuf 2.28.0", + "id": "protobuf 3.7.2", "target": "protobuf" }, { - "id": "thiserror 1.0.69", + "id": "thiserror 2.0.17", "target": "thiserror" } ], "selects": { "aarch64-unknown-linux-gnu": [ { - "id": "procfs 0.16.0", + "id": "procfs 0.17.0", "target": "procfs" } ], "x86_64-unknown-linux-gnu": [ { - "id": "procfs 0.16.0", + "id": "procfs 0.17.0", "target": "procfs" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "procfs 0.16.0", + "id": "procfs 0.17.0", "target": "procfs" } ] } }, "edition": "2018", - "version": "0.13.4" + "version": "0.14.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -42477,14 +43156,14 @@ ], "license_file": "LICENSE" }, - "proptest 1.9.0": { + "proptest 1.6.0": { "name": "proptest", - "version": "1.9.0", + "version": "1.6.0", "package_url": "https://github.com/proptest-rs/proptest", "repository": { "Http": { - "url": "https://static.crates.io/crates/proptest/1.9.0/download", - "sha256": "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40" + "url": "https://static.crates.io/crates/proptest/1.6.0/download", + "sha256": "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" } }, "targets": [ @@ -42511,6 +43190,7 @@ "bit-set", "default", "fork", + "lazy_static", "regex-syntax", "rusty-fork", "std", @@ -42533,20 +43213,24 @@ "id": "bitflags 2.10.0", "target": "bitflags" }, + { + "id": "lazy_static 1.5.0", + "target": "lazy_static" + }, { "id": "num-traits 0.2.19", "target": "num_traits" }, { - "id": "rand 0.9.2", + "id": "rand 0.8.5", "target": "rand" }, { - "id": "rand_chacha 0.9.0", + "id": "rand_chacha 0.3.1", "target": "rand_chacha" }, { - "id": "rand_xorshift 0.4.0", + "id": "rand_xorshift 0.3.0", "target": "rand_xorshift" }, { @@ -42568,8 +43252,8 @@ ], "selects": {} }, - "edition": "2021", - "version": "1.9.0" + "edition": "2018", + "version": "1.6.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -42634,7 +43318,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" } ], @@ -42873,14 +43557,14 @@ ], "license_file": "LICENSE" }, - "protobuf 2.28.0": { + "protobuf 3.7.2": { "name": "protobuf", - "version": "2.28.0", + "version": "3.7.2", "package_url": "https://github.com/stepancheg/rust-protobuf/", "repository": { "Http": { - "url": "https://static.crates.io/crates/protobuf/2.28.0/download", - "sha256": "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" + "url": "https://static.crates.io/crates/protobuf/3.7.2/download", + "sha256": "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" } }, "targets": [ @@ -42914,17 +43598,35 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "default" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "protobuf 2.28.0", + "id": "once_cell 1.21.3", + "target": "once_cell" + }, + { + "id": "protobuf 3.7.2", "target": "build_script_build" + }, + { + "id": "protobuf-support 3.7.2", + "target": "protobuf_support" + }, + { + "id": "thiserror 1.0.69", + "target": "thiserror" } ], "selects": {} }, - "edition": "2018", - "version": "2.28.0" + "edition": "2021", + "version": "3.7.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -42943,6 +43645,53 @@ ], "license_file": "LICENSE.txt" }, + "protobuf-support 3.7.2": { + "name": "protobuf-support", + "version": "3.7.2", + "package_url": "https://github.com/stepancheg/rust-protobuf/", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/protobuf-support/3.7.2/download", + "sha256": "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "protobuf_support", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "protobuf_support", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "thiserror 1.0.69", + "target": "thiserror" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "3.7.2" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE.txt" + }, "psm 0.1.28": { "name": "psm", "version": "0.1.28", @@ -43265,7 +44014,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -43380,7 +44129,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -44166,14 +44915,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rand_xorshift 0.4.0": { + "rand_xorshift 0.3.0": { "name": "rand_xorshift", - "version": "0.4.0", + "version": "0.3.0", "package_url": "https://github.com/rust-random/rngs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_xorshift/0.4.0/download", - "sha256": "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" + "url": "https://static.crates.io/crates/rand_xorshift/0.3.0/download", + "sha256": "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" } }, "targets": [ @@ -44198,14 +44947,14 @@ "deps": { "common": [ { - "id": "rand_core 0.9.3", + "id": "rand_core 0.6.4", "target": "rand_core" } ], "selects": {} }, - "edition": "2021", - "version": "0.4.0" + "edition": "2018", + "version": "0.3.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44214,14 +44963,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rangemap 1.6.0": { + "rangemap 1.7.1": { "name": "rangemap", - "version": "1.6.0", + "version": "1.7.1", "package_url": "https://github.com/jeffparsons/rangemap", "repository": { "Http": { - "url": "https://static.crates.io/crates/rangemap/1.6.0/download", - "sha256": "f93e7e49bb0bf967717f7bd674458b3d6b0c5f48ec7e3038166026a69fc22223" + "url": "https://static.crates.io/crates/rangemap/1.7.1/download", + "sha256": "973443cf09a9c8656b574a866ab68dfa19f0867d0340648c7d2f6a71b8a8ea68" } }, "targets": [ @@ -44244,7 +44993,7 @@ "**" ], "edition": "2018", - "version": "1.6.0" + "version": "1.7.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -44487,6 +45236,61 @@ ], "license_file": "LICENSE" }, + "redox_users 0.5.2": { + "name": "redox_users", + "version": "0.5.2", + "package_url": "https://gitlab.redox-os.org/redox-os/users", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/redox_users/0.5.2/download", + "sha256": "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" + } + }, + "targets": [ + { + "Library": { + "crate_name": "redox_users", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "redox_users", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "getrandom 0.2.16", + "target": "getrandom" + }, + { + "id": "libredox 0.1.10", + "target": "libredox" + }, + { + "id": "thiserror 2.0.17", + "target": "thiserror" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.5.2" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "regex 1.12.2": { "name": "regex", "version": "1.12.2", @@ -44831,7 +45635,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/registry/canister" } @@ -44869,14 +45673,22 @@ ], "deps": { "common": [ + { + "id": "attestation 0.0.0", + "target": "attestation" + }, { "id": "build-info 0.0.27", "target": "build_info" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, + { + "id": "der 0.7.10", + "target": "der" + }, { "id": "dfn_candid 0.9.0", "target": "dfn_candid" @@ -44937,18 +45749,10 @@ "id": "ic-nervous-system-access-list 0.9.0", "target": "ic_nervous_system_access_list" }, - { - "id": "ic-nervous-system-canisters 0.9.0", - "target": "ic_nervous_system_canisters" - }, { "id": "ic-nervous-system-chunks 0.9.0", "target": "ic_nervous_system_chunks" }, - { - "id": "ic-nervous-system-clients 0.0.1", - "target": "ic_nervous_system_clients" - }, { "id": "ic-nervous-system-common 0.9.0", "target": "ic_nervous_system_common" @@ -45021,10 +45825,6 @@ "id": "ic-types 0.9.0", "target": "ic_types" }, - { - "id": "ic-utils 0.9.0", - "target": "ic_utils" - }, { "id": "idna 1.1.0", "target": "idna" @@ -45239,7 +46039,7 @@ "target": "base64" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -45577,7 +46377,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/node_rewards/rewards_calculation" } @@ -46023,7 +46823,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/rosetta-api/common/rosetta_core" } @@ -46050,7 +46850,7 @@ "deps": { "common": [ { - "id": "actix-web-prom 0.9.0", + "id": "actix-web-prom 0.10.0", "target": "actix_web_prom" }, { @@ -46058,15 +46858,15 @@ "target": "anyhow" }, { - "id": "axum 0.8.6", + "id": "axum 0.8.8", "target": "axum" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -46074,11 +46874,11 @@ "target": "hex" }, { - "id": "ic-agent 0.40.1", + "id": "ic-agent 0.45.0", "target": "ic_agent" }, { - "id": "ic-ed25519 0.5.0", + "id": "ic-ed25519 0.6.0", "target": "ic_ed25519" }, { @@ -46106,7 +46906,7 @@ "target": "num_bigint" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, { @@ -46151,6 +46951,108 @@ "license_ids": [], "license_file": null }, + "rsa 0.9.10": { + "name": "rsa", + "version": "0.9.10", + "package_url": "https://github.com/RustCrypto/RSA", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/rsa/0.9.10/download", + "sha256": "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "rsa", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "rsa", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "pem", + "std", + "u64_digit" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "const-oid 0.9.6", + "target": "const_oid" + }, + { + "id": "digest 0.10.7", + "target": "digest" + }, + { + "id": "num-bigint-dig 0.8.6", + "target": "num_bigint_dig", + "alias": "num_bigint" + }, + { + "id": "num-integer 0.1.46", + "target": "num_integer" + }, + { + "id": "num-traits 0.2.19", + "target": "num_traits" + }, + { + "id": "pkcs1 0.7.5", + "target": "pkcs1" + }, + { + "id": "pkcs8 0.10.2", + "target": "pkcs8" + }, + { + "id": "rand_core 0.6.4", + "target": "rand_core" + }, + { + "id": "signature 2.2.0", + "target": "signature" + }, + { + "id": "spki 0.7.3", + "target": "spki" + }, + { + "id": "subtle 2.6.1", + "target": "subtle" + }, + { + "id": "zeroize 1.8.2", + "target": "zeroize" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.9.10" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "rust_decimal 1.39.0": { "name": "rust_decimal", "version": "1.39.0", @@ -49293,7 +50195,7 @@ "target": "ic_sys" }, { - "id": "prometheus 0.13.4", + "id": "prometheus 0.14.0", "target": "prometheus" }, { @@ -49349,6 +50251,146 @@ ], "license_file": null }, + "sev 7.1.0": { + "name": "sev", + "version": "7.1.0", + "package_url": "https://github.com/virtee/sev", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/sev/7.1.0/download", + "sha256": "c2ff74d7e7d1cc172f3a45adec74fbeee928d71df095b85aaaf66eb84e1e31e6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "sev", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "sev", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "crypto_nossl", + "snp" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "base64 0.22.1", + "target": "base64" + }, + { + "id": "bitfield 0.19.4", + "target": "bitfield" + }, + { + "id": "bitflags 2.10.0", + "target": "bitflags" + }, + { + "id": "byteorder 1.5.0", + "target": "byteorder" + }, + { + "id": "dirs 6.0.0", + "target": "dirs" + }, + { + "id": "hex 0.4.3", + "target": "hex" + }, + { + "id": "lazy_static 1.5.0", + "target": "lazy_static" + }, + { + "id": "libc 0.2.177", + "target": "libc" + }, + { + "id": "p384 0.13.1", + "target": "p384" + }, + { + "id": "rsa 0.9.10", + "target": "rsa" + }, + { + "id": "sev 7.1.0", + "target": "build_script_build" + }, + { + "id": "sha2 0.10.9", + "target": "sha2" + }, + { + "id": "static_assertions 1.1.0", + "target": "static_assertions" + }, + { + "id": "uuid 1.18.1", + "target": "uuid" + }, + { + "id": "x509-cert 0.2.5", + "target": "x509_cert" + } + ], + "selects": { + "cfg(target_os = \"linux\")": [ + { + "id": "iocuddle 0.1.1", + "target": "iocuddle" + } + ] + } + }, + "edition": "2018", + "version": "7.1.0" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "Apache-2.0", + "license_ids": [ + "Apache-2.0" + ], + "license_file": "LICENSE" + }, "sha1 0.10.6": { "name": "sha1", "version": "0.10.6", @@ -49994,7 +51036,7 @@ "target": "anyhow" }, { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -50844,7 +51886,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/sns/treasury_manager" } @@ -50871,7 +51913,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -53915,6 +54957,110 @@ ], "license_file": "LICENSE-APACHE.md" }, + "tls_codec 0.4.2": { + "name": "tls_codec", + "version": "0.4.2", + "package_url": "https://github.com/RustCrypto/formats", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/tls_codec/0.4.2/download", + "sha256": "0de2e01245e2bb89d6f05801c564fa27624dbd7b1846859876c7dad82e90bf6b" + } + }, + "targets": [ + { + "Library": { + "crate_name": "tls_codec", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "tls_codec", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "zeroize 1.8.2", + "target": "zeroize" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.4.2" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "tls_codec_derive 0.4.2": { + "name": "tls_codec_derive", + "version": "0.4.2", + "package_url": "https://github.com/RustCrypto/formats", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/tls_codec_derive/0.4.2/download", + "sha256": "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "tls_codec_derive", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "tls_codec_derive", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "proc-macro2 1.0.103", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.42", + "target": "quote" + }, + { + "id": "syn 2.0.110", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.4.2" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "tokio 1.48.0": { "name": "tokio", "version": "1.48.0", @@ -53976,7 +55122,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -54079,58 +55225,6 @@ ], "license_file": "LICENSE" }, - "tokio-io-timeout 1.2.1": { - "name": "tokio-io-timeout", - "version": "1.2.1", - "package_url": "https://github.com/sfackler/tokio-io-timeout", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/tokio-io-timeout/1.2.1/download", - "sha256": "0bd86198d9ee903fedd2f9a2e72014287c0d9167e4ae43b5853007205dda1b76" - } - }, - "targets": [ - { - "Library": { - "crate_name": "tokio_io_timeout", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "tokio_io_timeout", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "pin-project-lite 0.2.16", - "target": "pin_project_lite" - }, - { - "id": "tokio 1.48.0", - "target": "tokio" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.2.1" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "tokio-macros 2.6.0": { "name": "tokio-macros", "version": "2.6.0", @@ -54499,7 +55593,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -54755,7 +55849,7 @@ "target": "base64" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -55231,7 +56325,7 @@ "target": "bitflags" }, { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -55569,7 +56663,7 @@ "Git": { "remote": "https://github.com/dfinity/ic.git", "commitish": { - "Rev": "f34ab00f31dc3f223ef832be30303f93e59c19ec" + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" }, "strip_prefix": "rs/tree_deserializer" } @@ -55644,7 +56738,7 @@ "deps": { "common": [ { - "id": "candid 0.10.20", + "id": "candid 0.10.24", "target": "candid" }, { @@ -55767,7 +56861,7 @@ "deps": { "common": [ { - "id": "bytes 1.10.1", + "id": "bytes 1.11.1", "target": "bytes" }, { @@ -56678,13 +57772,19 @@ "common": [ "default", "rng", + "serde", "std", "v4" ], "selects": {} }, "deps": { - "common": [], + "common": [ + { + "id": "serde 1.0.228", + "target": "serde" + } + ], "selects": { "aarch64-apple-darwin": [ { @@ -59122,6 +60222,7 @@ "Wdk_System_IO", "Win32", "Win32_Foundation", + "Win32_Globalization", "Win32_Networking", "Win32_Networking_WinSock", "Win32_Security", @@ -61431,6 +62532,70 @@ ], "license_file": "LICENSE.txt" }, + "x509-cert 0.2.5": { + "name": "x509-cert", + "version": "0.2.5", + "package_url": "https://github.com/RustCrypto/formats/tree/master/x509-cert", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/x509-cert/0.2.5/download", + "sha256": "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94" + } + }, + "targets": [ + { + "Library": { + "crate_name": "x509_cert", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "x509_cert", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "pem", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "const-oid 0.9.6", + "target": "const_oid" + }, + { + "id": "der 0.7.10", + "target": "der" + }, + { + "id": "spki 0.7.3", + "target": "spki" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.2.5" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "x509-parser 0.16.0": { "name": "x509-parser", "version": "0.16.0", @@ -62994,13 +64159,13 @@ "anyhow 1.0.100", "async-recursion 1.1.1", "async-trait 0.1.89", - "axum 0.8.6", - "axum-otel-metrics 0.10.0", + "axum 0.8.8", + "axum-otel-metrics 0.11.0", "backoff 0.4.0", "backon 1.6.0", "base64 0.22.1", "byteorder 1.5.0", - "candid 0.10.20", + "candid 0.10.24", "chrono 0.4.42", "clap 4.5.51", "clap-num 1.2.0", @@ -63076,11 +64241,11 @@ "log 0.4.28", "mockall 0.13.1", "octocrab 0.41.2", - "opentelemetry 0.28.0", - "opentelemetry-prometheus 0.28.0", - "opentelemetry_sdk 0.28.0", + "opentelemetry 0.29.1", + "opentelemetry-prometheus 0.29.1", + "opentelemetry_sdk 0.29.0", "pretty_env_logger 0.5.0", - "prometheus 0.13.4", + "prometheus 0.14.0", "prometheus-http-query 0.8.3", "prost 0.13.5", "rand 0.9.2", diff --git a/Cargo.lock b/Cargo.lock index e1262756b..8a948c7df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3406,7 +3406,7 @@ version = "0.9.0" source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", - "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", + "ic-error-types 0.2.0", "ic-interfaces-adapter-client", "ic-protobuf", "serde", @@ -3521,7 +3521,7 @@ dependencies = [ "ic-canonical-state-tree-hash", "ic-certification-version", "ic-crypto-tree-hash", - "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", + "ic-error-types 0.2.0", "ic-protobuf", "ic-registry-routing-table", "ic-registry-subnet-type", @@ -3557,7 +3557,7 @@ dependencies = [ "candid", "ic-cdk-executor", "ic-cdk-macros", - "ic-error-types 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ic-error-types 0.2.0", "ic-management-canister-types", "ic0", "pin-project-lite", @@ -4166,7 +4166,7 @@ source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6b dependencies = [ "ic-base-types", "ic-crypto-interfaces-sig-verification", - "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", + "ic-error-types 0.2.0", "ic-heap-bytes", "ic-management-canister-types-private", "ic-protobuf", @@ -4343,7 +4343,7 @@ dependencies = [ "ic-base-types", "ic-btc-interface", "ic-btc-replica-types", - "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", + "ic-error-types 0.2.0", "ic-protobuf", "ic-utils 0.9.0", "num-traits", @@ -4449,7 +4449,7 @@ dependencies = [ "candid", "dfn_core", "ic-base-types", - "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", + "ic-error-types 0.2.0", "ic-ledger-core", "ic-management-canister-types-private", "ic-nervous-system-canisters", @@ -4909,7 +4909,7 @@ dependencies = [ "candid", "comparable", "erased-serde 0.3.31", - "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", + "ic-error-types 0.2.0", "prost", "serde", "serde_json", @@ -5161,7 +5161,7 @@ dependencies = [ "ic-certification-version", "ic-config", "ic-crypto-sha2", - "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", + "ic-error-types 0.2.0", "ic-interfaces", "ic-limits", "ic-logger", @@ -5577,7 +5577,7 @@ dependencies = [ "ic-crypto-internal-types", "ic-crypto-sha2", "ic-crypto-tree-hash", - "ic-error-types 0.2.0 (git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797)", + "ic-error-types 0.2.0", "ic-heap-bytes", "ic-limits", "ic-management-canister-types-private", From f90c0f836b5edaef2b7476fdf5fcafcb57ae3437 Mon Sep 17 00:00:00 2001 From: nikolamilosa Date: Wed, 11 Mar 2026 15:38:13 +0000 Subject: [PATCH 3/3] resolving ic-error-types --- Cargo.Bazel.lock | 6674 ++++++++++++++++++++++++++-------------------- Cargo.lock | 1399 +++++----- Cargo.toml | 3 + 3 files changed, 4590 insertions(+), 3486 deletions(-) diff --git a/Cargo.Bazel.lock b/Cargo.Bazel.lock index 8ee9aaaa5..d6c83813c 100644 --- a/Cargo.Bazel.lock +++ b/Cargo.Bazel.lock @@ -1,5 +1,5 @@ { - "checksum": "0013ade3373e859f71d50cd93f4349eccba345c84b6e1d46017f4880b2064686", + "checksum": "7f5b8a79b39bdff24118bcd37794ebb16580480befa84746a4e1fef90f5c7aa1", "crates": { "actix-codec 0.5.2": { "name": "actix-codec", @@ -33,7 +33,7 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -41,31 +41,31 @@ "target": "bytes" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-sink 0.3.31", + "id": "futures-sink 0.3.32", "target": "futures_sink" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -81,14 +81,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-http 3.11.2": { + "actix-http 3.12.0": { "name": "actix-http", - "version": "3.11.2", + "version": "3.12.0", "package_url": "https://github.com/actix/actix-web", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-http/3.11.2/download", - "sha256": "7926860314cbe2fb5d1f13731e387ab43bd32bca224e82e6e2db85de0a3dba49" + "url": "https://static.crates.io/crates/actix-http/3.12.0/download", + "sha256": "f860ee6746d0c5b682147b2f7f8ef036d4f92fe518251a3a35ffa3650eafdf0e" } }, "targets": [ @@ -114,8 +114,7 @@ "common": [ "__compress", "compress-gzip", - "default", - "ws" + "default" ], "selects": {} }, @@ -138,11 +137,7 @@ "target": "actix_utils" }, { - "id": "base64 0.22.1", - "target": "base64" - }, - { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -154,7 +149,7 @@ "target": "bytestring" }, { - "id": "derive_more 2.0.1", + "id": "derive_more 2.1.1", "target": "derive_more" }, { @@ -162,7 +157,7 @@ "target": "encoding_rs" }, { - "id": "flate2 1.1.5", + "id": "flate2 1.1.9", "target": "flate2" }, { @@ -170,7 +165,7 @@ "target": "foldhash" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { @@ -186,17 +181,13 @@ "target": "httpdate" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { "id": "language-tags 0.3.2", "target": "language_tags" }, - { - "id": "local-channel 0.1.5", - "target": "local_channel" - }, { "id": "mime 0.3.17", "target": "mime" @@ -206,38 +197,30 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, - { - "id": "rand 0.9.2", - "target": "rand" - }, - { - "id": "sha1 0.10.6", - "target": "sha1" - }, { "id": "smallvec 1.15.1", "target": "smallvec" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], "selects": {} }, "edition": "2021", - "version": "3.11.2" + "version": "3.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -278,11 +261,11 @@ "deps": { "common": [ { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -298,14 +281,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-router 0.5.3": { + "actix-router 0.5.4": { "name": "actix-router", - "version": "0.5.3", + "version": "0.5.4", "package_url": "https://github.com/actix/actix-web", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-router/0.5.3/download", - "sha256": "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" + "url": "https://static.crates.io/crates/actix-router/0.5.4/download", + "sha256": "14f8c75c51892f18d9c46150c5ac7beb81c95f78c8b83a634d49f4ca32551fe7" } }, "targets": [ @@ -348,7 +331,7 @@ "target": "http" }, { - "id": "regex-lite 0.1.8", + "id": "regex-lite 0.1.9", "target": "regex_lite" }, { @@ -356,14 +339,14 @@ "target": "serde" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], "selects": {} }, "edition": "2021", - "version": "0.5.3" + "version": "0.5.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -412,11 +395,11 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -491,15 +474,15 @@ "target": "actix_utils" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "mio 1.1.0", + "id": "mio 1.1.1", "target": "mio" }, { @@ -507,11 +490,11 @@ "target": "socket2" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -559,11 +542,11 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -615,7 +598,7 @@ "target": "local_waker" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -631,14 +614,14 @@ ], "license_file": "LICENSE-APACHE" }, - "actix-web 4.11.0": { + "actix-web 4.13.0": { "name": "actix-web", - "version": "4.11.0", + "version": "4.13.0", "package_url": "https://github.com/actix/actix-web", "repository": { "Http": { - "url": "https://static.crates.io/crates/actix-web/4.11.0/download", - "sha256": "a597b77b5c6d6a1e1097fddde329a83665e25c5437c696a3a9a4aa514a614dea" + "url": "https://static.crates.io/crates/actix-web/4.13.0/download", + "sha256": "ff87453bc3b56e9b2b23c1cc0b1be8797184accf51d2abe0f8a33ec275d316bf" } }, "targets": [ @@ -675,11 +658,11 @@ "target": "actix_codec" }, { - "id": "actix-http 3.11.2", + "id": "actix-http 3.12.0", "target": "actix_http" }, { - "id": "actix-router 0.5.3", + "id": "actix-router 0.5.4", "target": "actix_router" }, { @@ -711,7 +694,7 @@ "target": "cfg_if" }, { - "id": "derive_more 2.0.1", + "id": "derive_more 2.1.1", "target": "derive_more" }, { @@ -723,11 +706,11 @@ "target": "foldhash" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -735,7 +718,7 @@ "target": "impl_more" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { @@ -743,7 +726,7 @@ "target": "language_tags" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -755,11 +738,11 @@ "target": "once_cell" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "regex-lite 0.1.8", + "id": "regex-lite 0.1.9", "target": "regex_lite" }, { @@ -767,7 +750,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -779,19 +762,19 @@ "target": "smallvec" }, { - "id": "socket2 0.5.10", + "id": "socket2 0.6.3", "target": "socket2" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -811,7 +794,7 @@ ], "selects": {} }, - "version": "4.11.0" + "version": "4.13.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -852,19 +835,19 @@ "deps": { "common": [ { - "id": "actix-router 0.5.3", + "id": "actix-router 0.5.4", "target": "actix_router" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -912,19 +895,19 @@ "deps": { "common": [ { - "id": "actix-web 4.11.0", + "id": "actix-web 4.13.0", "target": "actix_web" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -932,7 +915,7 @@ "target": "prometheus" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -1080,7 +1063,7 @@ "selects": { "cfg(any(target_os = \"linux\", target_os = \"android\", target_os = \"windows\", target_os = \"macos\", target_os = \"ios\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"dragonfly\", target_os = \"solaris\", target_os = \"illumos\", target_os = \"fuchsia\", target_os = \"redox\", target_os = \"cloudabi\", target_os = \"haiku\", target_os = \"vxworks\", target_os = \"emscripten\", target_os = \"wasi\"))": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" } ], @@ -1187,7 +1170,7 @@ "target": "getrandom" }, { - "id": "zerocopy 0.8.27", + "id": "zerocopy 0.8.42", "target": "zerocopy" } ], @@ -1269,7 +1252,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" } ], @@ -1447,7 +1430,7 @@ "deps": { "common": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -1511,7 +1494,7 @@ "target": "anstyle_parse" }, { - "id": "anstyle-query 1.1.4", + "id": "anstyle-query 1.1.5", "target": "anstyle_query" }, { @@ -1530,7 +1513,7 @@ "selects": { "x86_64-pc-windows-msvc": [ { - "id": "anstyle-wincon 3.0.10", + "id": "anstyle-wincon 3.0.11", "target": "anstyle_wincon" } ] @@ -1647,14 +1630,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-query 1.1.4": { + "anstyle-query 1.1.5": { "name": "anstyle-query", - "version": "1.1.4", + "version": "1.1.5", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-query/1.1.4/download", - "sha256": "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" + "url": "https://static.crates.io/crates/anstyle-query/1.1.5/download", + "sha256": "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" } }, "targets": [ @@ -1681,14 +1664,14 @@ "selects": { "cfg(windows)": [ { - "id": "windows-sys 0.60.2", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "1.1.4" + "version": "1.1.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1697,14 +1680,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anstyle-wincon 3.0.10": { + "anstyle-wincon 3.0.11": { "name": "anstyle-wincon", - "version": "3.0.10", + "version": "3.0.11", "package_url": "https://github.com/rust-cli/anstyle.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/anstyle-wincon/3.0.10/download", - "sha256": "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" + "url": "https://static.crates.io/crates/anstyle-wincon/3.0.11/download", + "sha256": "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" } }, "targets": [ @@ -1740,14 +1723,14 @@ "target": "once_cell_polyfill" }, { - "id": "windows-sys 0.60.2", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "3.0.10" + "version": "3.0.11" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -1756,14 +1739,14 @@ ], "license_file": "LICENSE-APACHE" }, - "anyhow 1.0.100": { + "anyhow 1.0.102": { "name": "anyhow", - "version": "1.0.100", + "version": "1.0.102", "package_url": "https://github.com/dtolnay/anyhow", "repository": { "Http": { - "url": "https://static.crates.io/crates/anyhow/1.0.100/download", - "sha256": "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" + "url": "https://static.crates.io/crates/anyhow/1.0.102/download", + "sha256": "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" } }, "targets": [ @@ -1807,14 +1790,14 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "1.0.100" + "edition": "2021", + "version": "1.0.102" }, "build_script_attrs": { "compile_data_glob": [ @@ -1834,14 +1817,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ar_archive_writer 0.2.0": { + "ar_archive_writer 0.5.1": { "name": "ar_archive_writer", - "version": "0.2.0", + "version": "0.5.1", "package_url": "https://github.com/rust-lang/ar_archive_writer", "repository": { "Http": { - "url": "https://static.crates.io/crates/ar_archive_writer/0.2.0/download", - "sha256": "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a" + "url": "https://static.crates.io/crates/ar_archive_writer/0.5.1/download", + "sha256": "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b" } }, "targets": [ @@ -1866,14 +1849,14 @@ "deps": { "common": [ { - "id": "object 0.32.2", + "id": "object 0.37.3", "target": "object" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.0" + "edition": "2024", + "version": "0.5.1" }, "license": "Apache-2.0 WITH LLVM-exception", "license_ids": [ @@ -1920,14 +1903,14 @@ ], "license_file": "LICENSE-APACHE" }, - "arc-swap 1.7.1": { + "arc-swap 1.8.2": { "name": "arc-swap", - "version": "1.7.1", + "version": "1.8.2", "package_url": "https://github.com/vorner/arc-swap", "repository": { "Http": { - "url": "https://static.crates.io/crates/arc-swap/1.7.1/download", - "sha256": "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" + "url": "https://static.crates.io/crates/arc-swap/1.8.2/download", + "sha256": "f9f3647c145568cec02c42054e07bdf9a5a698e15b466fb2341bfc393cd24aa5" } }, "targets": [ @@ -1950,7 +1933,16 @@ "**" ], "edition": "2018", - "version": "1.7.1" + "proc_macro_deps": { + "common": [ + { + "id": "rustversion 1.0.22", + "target": "rustversion" + } + ], + "selects": {} + }, + "version": "1.8.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2155,7 +2147,7 @@ "target": "thiserror" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" } ], @@ -2220,15 +2212,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" }, { @@ -2280,15 +2272,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -2340,7 +2332,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" } ], @@ -2355,14 +2347,14 @@ ], "license_file": "LICENSE" }, - "assert_cmd 2.1.1": { + "assert_cmd 2.2.0": { "name": "assert_cmd", - "version": "2.1.1", + "version": "2.2.0", "package_url": "https://github.com/assert-rs/assert_cmd.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/assert_cmd/2.1.1/download", - "sha256": "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85" + "url": "https://static.crates.io/crates/assert_cmd/2.2.0/download", + "sha256": "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9" } }, "targets": [ @@ -2403,7 +2395,7 @@ "target": "anstyle" }, { - "id": "assert_cmd 2.1.1", + "id": "assert_cmd 2.2.0", "target": "build_script_build" }, { @@ -2411,15 +2403,15 @@ "target": "bstr" }, { - "id": "predicates 3.1.3", + "id": "predicates 3.1.4", "target": "predicates" }, { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.10", "target": "predicates_core" }, { - "id": "predicates-tree 1.0.12", + "id": "predicates-tree 1.0.13", "target": "predicates_tree" }, { @@ -2430,14 +2422,14 @@ "selects": { "cfg(any())": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] } }, - "edition": "2021", - "version": "2.1.1" + "edition": "2024", + "version": "2.2.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -2497,7 +2489,7 @@ "target": "event_listener" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" } ], @@ -2560,11 +2552,11 @@ "target": "event_listener_strategy" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -2580,14 +2572,14 @@ ], "license_file": "LICENSE-APACHE" }, - "async-compression 0.4.33": { + "async-compression 0.4.41": { "name": "async-compression", - "version": "0.4.33", + "version": "0.4.41", "package_url": "https://github.com/Nullus157/async-compression", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-compression/0.4.33/download", - "sha256": "93c1f86859c1af3d514fa19e8323147ff10ea98684e6c7b307912509f50e67b2" + "url": "https://static.crates.io/crates/async-compression/0.4.41/download", + "sha256": "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1" } }, "targets": [ @@ -2622,30 +2614,26 @@ "deps": { "common": [ { - "id": "compression-codecs 0.4.32", + "id": "compression-codecs 0.4.37", "target": "compression_codecs" }, { - "id": "compression-core 0.4.30", + "id": "compression-core 0.4.31", "target": "compression_core" }, { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], "selects": {} }, "edition": "2018", - "version": "0.4.33" + "version": "0.4.41" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -2654,14 +2642,14 @@ ], "license_file": null }, - "async-lock 3.4.1": { + "async-lock 3.4.2": { "name": "async-lock", - "version": "3.4.1", + "version": "3.4.2", "package_url": "https://github.com/smol-rs/async-lock", "repository": { "Http": { - "url": "https://static.crates.io/crates/async-lock/3.4.1/download", - "sha256": "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" + "url": "https://static.crates.io/crates/async-lock/3.4.2/download", + "sha256": "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" } }, "targets": [ @@ -2701,14 +2689,14 @@ "target": "event_listener_strategy" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], "selects": {} }, "edition": "2021", - "version": "3.4.1" + "version": "3.4.2" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -2749,15 +2737,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -2805,11 +2793,11 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -2865,15 +2853,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -2920,15 +2908,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -3122,14 +3110,14 @@ "target": "sha2" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" } ] @@ -3221,11 +3209,11 @@ "target": "bytes" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -3237,7 +3225,7 @@ "target": "http_body_util" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { @@ -3245,7 +3233,7 @@ "target": "matchit" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { @@ -3257,7 +3245,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -3269,7 +3257,7 @@ "target": "sync_wrapper" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { @@ -3353,7 +3341,7 @@ "deps": { "common": [ { - "id": "axum-core 0.5.5", + "id": "axum-core 0.5.6", "target": "axum_core" }, { @@ -3369,11 +3357,11 @@ "target": "form_urlencoded" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -3385,15 +3373,15 @@ "target": "http_body_util" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { @@ -3401,7 +3389,7 @@ "target": "matchit" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { @@ -3413,7 +3401,7 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -3421,7 +3409,7 @@ "target": "serde_core" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -3441,7 +3429,7 @@ "target": "sync_wrapper" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -3449,7 +3437,7 @@ "target": "tokio_tungstenite" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { @@ -3461,7 +3449,7 @@ "target": "tower_service" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -3512,11 +3500,11 @@ "target": "bytes" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -3532,7 +3520,7 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -3572,14 +3560,14 @@ ], "license_file": "LICENSE" }, - "axum-core 0.5.5": { + "axum-core 0.5.6": { "name": "axum-core", - "version": "0.5.5", + "version": "0.5.6", "package_url": "https://github.com/tokio-rs/axum", "repository": { "Http": { - "url": "https://static.crates.io/crates/axum-core/0.5.5/download", - "sha256": "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" + "url": "https://static.crates.io/crates/axum-core/0.5.6/download", + "sha256": "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" } }, "targets": [ @@ -3614,11 +3602,11 @@ "target": "bytes" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -3634,7 +3622,7 @@ "target": "mime" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -3650,14 +3638,14 @@ "target": "tower_service" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], "selects": {} }, "edition": "2021", - "version": "0.5.5" + "version": "0.5.6" }, "license": "MIT", "license_ids": [ @@ -3701,11 +3689,11 @@ "target": "axum" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -3725,11 +3713,11 @@ "target": "opentelemetry_sdk" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" } ], @@ -3787,11 +3775,11 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" }, { @@ -3799,7 +3787,7 @@ "target": "instant" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -3807,7 +3795,7 @@ "target": "rand" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio", "alias": "tokio_1" } @@ -3895,13 +3883,13 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], "aarch64-unknown-linux-gnu": [ { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -3919,19 +3907,19 @@ ], "x86_64-pc-windows-msvc": [ { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], "x86_64-unknown-linux-gnu": [ { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ] @@ -4123,14 +4111,14 @@ ], "license_file": "LICENSE-APACHE" }, - "base64ct 1.8.0": { + "base64ct 1.8.3": { "name": "base64ct", - "version": "1.8.0", + "version": "1.8.3", "package_url": "https://github.com/RustCrypto/formats", "repository": { "Http": { - "url": "https://static.crates.io/crates/base64ct/1.8.0/download", - "sha256": "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" + "url": "https://static.crates.io/crates/base64ct/1.8.3/download", + "sha256": "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" } }, "targets": [ @@ -4159,7 +4147,7 @@ "selects": {} }, "edition": "2024", - "version": "1.8.0" + "version": "1.8.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -4371,11 +4359,11 @@ "target": "either" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -4669,15 +4657,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -4738,14 +4726,14 @@ ], "license_file": "LICENSE-APACHE" }, - "bitflags 2.10.0": { + "bitflags 2.11.0": { "name": "bitflags", - "version": "2.10.0", + "version": "2.11.0", "package_url": "https://github.com/bitflags/bitflags", "repository": { "Http": { - "url": "https://static.crates.io/crates/bitflags/2.10.0/download", - "sha256": "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" + "url": "https://static.crates.io/crates/bitflags/2.11.0/download", + "sha256": "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" } }, "targets": [ @@ -4774,7 +4762,7 @@ "selects": {} }, "edition": "2021", - "version": "2.10.0" + "version": "2.11.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4938,14 +4926,14 @@ ], "license_file": "LICENSE-APACHE" }, - "borsh 1.5.7": { + "borsh 1.6.0": { "name": "borsh", - "version": "1.5.7", + "version": "1.6.0", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh/1.5.7/download", - "sha256": "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" + "url": "https://static.crates.io/crates/borsh/1.6.0/download", + "sha256": "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" } }, "targets": [ @@ -4982,14 +4970,14 @@ "deps": { "common": [ { - "id": "borsh 1.5.7", + "id": "borsh 1.6.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.5.7" + "version": "1.6.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -5016,16 +5004,16 @@ "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, - "borsh-derive 1.5.7": { + "borsh-derive 1.6.0": { "name": "borsh-derive", - "version": "1.5.7", + "version": "1.6.0", "package_url": "https://github.com/near/borsh-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/borsh-derive/1.5.7/download", - "sha256": "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3" + "url": "https://static.crates.io/crates/borsh-derive/1.6.0/download", + "sha256": "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c" } }, "targets": [ @@ -5054,32 +5042,32 @@ "target": "once_cell" }, { - "id": "proc-macro-crate 3.4.0", + "id": "proc-macro-crate 3.5.0", "target": "proc_macro_crate" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "1.5.7" + "version": "1.6.0" }, "license": "Apache-2.0", "license_ids": [ "Apache-2.0" ], - "license_file": null + "license_file": "LICENSE-APACHE" }, "brotli 8.0.2": { "name": "brotli", @@ -5246,11 +5234,11 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "regex-automata 0.4.13", + "id": "regex-automata 0.4.14", "target": "regex_automata" } ], @@ -5378,7 +5366,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -5414,7 +5402,7 @@ "target": "rustc_version" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -5594,7 +5582,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -5622,15 +5610,15 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -5663,14 +5651,14 @@ ], "license_file": null }, - "bumpalo 3.19.0": { + "bumpalo 3.20.2": { "name": "bumpalo", - "version": "3.19.0", + "version": "3.20.2", "package_url": "https://github.com/fitzgen/bumpalo", "repository": { "Http": { - "url": "https://static.crates.io/crates/bumpalo/3.19.0/download", - "sha256": "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" + "url": "https://static.crates.io/crates/bumpalo/3.20.2/download", + "sha256": "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" } }, "targets": [ @@ -5699,7 +5687,7 @@ "selects": {} }, "edition": "2021", - "version": "3.19.0" + "version": "3.20.2" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -5793,7 +5781,7 @@ "target": "serde" }, { - "id": "utf8-width 0.1.7", + "id": "utf8-width 0.1.8", "target": "utf8_width" } ], @@ -5923,11 +5911,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -6303,7 +6291,7 @@ "target": "once_cell" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { @@ -6322,14 +6310,14 @@ ], "license_file": "LICENSE" }, - "camino 1.2.1": { + "camino 1.2.2": { "name": "camino", - "version": "1.2.1", + "version": "1.2.2", "package_url": "https://github.com/camino-rs/camino", "repository": { "Http": { - "url": "https://static.crates.io/crates/camino/1.2.1/download", - "sha256": "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" + "url": "https://static.crates.io/crates/camino/1.2.2/download", + "sha256": "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" } }, "targets": [ @@ -6372,7 +6360,7 @@ "deps": { "common": [ { - "id": "camino 1.2.1", + "id": "camino 1.2.2", "target": "build_script_build" }, { @@ -6383,7 +6371,7 @@ "selects": {} }, "edition": "2021", - "version": "1.2.1" + "version": "1.2.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -6446,7 +6434,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -6462,7 +6450,7 @@ "target": "hex" }, { - "id": "ic_principal 0.1.1", + "id": "ic_principal 0.1.2", "target": "ic_principal" }, { @@ -6497,7 +6485,7 @@ "selects": { "cfg(not(target_family = \"wasm\"))": [ { - "id": "stacker 0.1.22", + "id": "stacker 0.1.23", "target": "stacker" } ] @@ -6613,15 +6601,15 @@ "target": "lazy_static" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -6680,7 +6668,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -6769,11 +6757,11 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -6781,7 +6769,7 @@ "target": "humantime" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -6789,7 +6777,7 @@ "target": "pretty_env_logger" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -6797,15 +6785,15 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -6906,7 +6894,7 @@ "deps": { "common": [ { - "id": "camino 1.2.1", + "id": "camino 1.2.2", "target": "camino" }, { @@ -6922,7 +6910,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" } ], @@ -6937,14 +6925,14 @@ ], "license_file": "LICENSE-MIT" }, - "cc 1.2.45": { + "cc 1.2.56": { "name": "cc", - "version": "1.2.45", + "version": "1.2.56", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/cc/1.2.45/download", - "sha256": "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe" + "url": "https://static.crates.io/crates/cc/1.2.56/download", + "sha256": "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" } }, "targets": [ @@ -6975,7 +6963,7 @@ "deps": { "common": [ { - "id": "find-msvc-tools 0.1.4", + "id": "find-msvc-tools 0.1.9", "target": "find_msvc_tools" }, { @@ -6990,32 +6978,32 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] } }, "edition": "2018", - "version": "1.2.45" + "version": "1.2.56" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7101,14 +7089,14 @@ ], "license_file": "LICENSE" }, - "chrono 0.4.42": { + "chrono 0.4.44": { "name": "chrono", - "version": "0.4.42", + "version": "0.4.44", "package_url": "https://github.com/chronotope/chrono", "repository": { "Http": { - "url": "https://static.crates.io/crates/chrono/0.4.42/download", - "sha256": "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" + "url": "https://static.crates.io/crates/chrono/0.4.44/download", + "sha256": "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" } }, "targets": [ @@ -7162,23 +7150,23 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "iana-time-zone 0.1.64", + "id": "iana-time-zone 0.1.65", "target": "iana_time_zone" } ], "aarch64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.64", + "id": "iana-time-zone 0.1.65", "target": "iana_time_zone" } ], "wasm32-unknown-unknown": [ { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], @@ -7190,20 +7178,20 @@ ], "x86_64-unknown-linux-gnu": [ { - "id": "iana-time-zone 0.1.64", + "id": "iana-time-zone 0.1.65", "target": "iana_time_zone" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "iana-time-zone 0.1.64", + "id": "iana-time-zone 0.1.65", "target": "iana_time_zone" } ] } }, "edition": "2021", - "version": "0.4.42" + "version": "0.4.44" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7370,14 +7358,14 @@ ], "license_file": "LICENSE" }, - "clap 4.5.51": { + "clap 4.5.60": { "name": "clap", - "version": "4.5.51", + "version": "4.5.60", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap/4.5.51/download", - "sha256": "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5" + "url": "https://static.crates.io/crates/clap/4.5.60/download", + "sha256": "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a" } }, "targets": [ @@ -7419,7 +7407,7 @@ "deps": { "common": [ { - "id": "clap_builder 4.5.51", + "id": "clap_builder 4.5.60", "target": "clap_builder" } ], @@ -7429,13 +7417,13 @@ "proc_macro_deps": { "common": [ { - "id": "clap_derive 4.5.49", + "id": "clap_derive 4.5.55", "target": "clap_derive" } ], "selects": {} }, - "version": "4.5.51" + "version": "4.5.60" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7491,14 +7479,14 @@ ], "license_file": "LICENSE" }, - "clap_builder 4.5.51": { + "clap_builder 4.5.60": { "name": "clap_builder", - "version": "4.5.51", + "version": "4.5.60", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_builder/4.5.51/download", - "sha256": "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a" + "url": "https://static.crates.io/crates/clap_builder/4.5.60/download", + "sha256": "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876" } }, "targets": [ @@ -7546,7 +7534,7 @@ "target": "anstyle" }, { - "id": "clap_lex 0.7.6", + "id": "clap_lex 1.0.0", "target": "clap_lex" }, { @@ -7561,7 +7549,7 @@ "selects": {} }, "edition": "2021", - "version": "4.5.51" + "version": "4.5.60" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7570,14 +7558,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_complete 4.5.60": { + "clap_complete 4.5.66": { "name": "clap_complete", - "version": "4.5.60", + "version": "4.5.66", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_complete/4.5.60/download", - "sha256": "8e602857739c5a4291dfa33b5a298aeac9006185229a700e5810a3ef7272d971" + "url": "https://static.crates.io/crates/clap_complete/4.5.66/download", + "sha256": "c757a3b7e39161a4e56f9365141ada2a6c915a8622c408ab6bb4b5d047371031" } }, "targets": [ @@ -7608,14 +7596,14 @@ "deps": { "common": [ { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" } ], "selects": {} }, "edition": "2021", - "version": "4.5.60" + "version": "4.5.66" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7624,14 +7612,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_derive 4.5.49": { + "clap_derive 4.5.55": { "name": "clap_derive", - "version": "4.5.49", + "version": "4.5.55", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_derive/4.5.49/download", - "sha256": "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" + "url": "https://static.crates.io/crates/clap_derive/4.5.55/download", + "sha256": "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" } }, "targets": [ @@ -7666,22 +7654,22 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "4.5.49" + "version": "4.5.55" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7690,14 +7678,14 @@ ], "license_file": "LICENSE-APACHE" }, - "clap_lex 0.7.6": { + "clap_lex 1.0.0": { "name": "clap_lex", - "version": "0.7.6", + "version": "1.0.0", "package_url": "https://github.com/clap-rs/clap", "repository": { "Http": { - "url": "https://static.crates.io/crates/clap_lex/0.7.6/download", - "sha256": "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" + "url": "https://static.crates.io/crates/clap_lex/1.0.0/download", + "sha256": "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" } }, "targets": [ @@ -7720,7 +7708,7 @@ "**" ], "edition": "2021", - "version": "0.7.6" + "version": "1.0.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7873,14 +7861,14 @@ ], "license_file": "LICENSE" }, - "comfy-table 7.2.1": { + "comfy-table 7.2.2": { "name": "comfy-table", - "version": "7.2.1", + "version": "7.2.2", "package_url": "https://github.com/nukesor/comfy-table", "repository": { "Http": { - "url": "https://static.crates.io/crates/comfy-table/7.2.1/download", - "sha256": "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b" + "url": "https://static.crates.io/crates/comfy-table/7.2.2/download", + "sha256": "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" } }, "targets": [ @@ -7927,7 +7915,7 @@ "selects": {} }, "edition": "2024", - "version": "7.2.1" + "version": "7.2.2" }, "license": "MIT", "license_ids": [ @@ -7935,14 +7923,14 @@ ], "license_file": "LICENSE" }, - "comparable 0.5.5": { + "comparable 0.5.6": { "name": "comparable", - "version": "0.5.5", + "version": "0.5.6", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable/0.5.5/download", - "sha256": "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" + "url": "https://static.crates.io/crates/comparable/0.5.6/download", + "sha256": "838d2d21a142bc619c262bb2145d1af0a2e3dccfcb1360bbc47ae4c6686e1ec6" } }, "targets": [ @@ -7988,17 +7976,17 @@ "proc_macro_deps": { "common": [ { - "id": "comparable_derive 0.5.5", + "id": "comparable_derive 0.5.6", "target": "comparable_derive" }, { - "id": "comparable_helper 0.5.5", + "id": "comparable_helper 0.5.6", "target": "comparable_helper" } ], "selects": {} }, - "version": "0.5.5" + "version": "0.5.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8007,14 +7995,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_derive 0.5.5": { + "comparable_derive 0.5.6": { "name": "comparable_derive", - "version": "0.5.5", + "version": "0.5.6", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_derive/0.5.5/download", - "sha256": "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" + "url": "https://static.crates.io/crates/comparable_derive/0.5.6/download", + "sha256": "8fef8fab462495e2956b0666a4fb50c6c5058bdbd2c2bc91c5894a03f916177f" } }, "targets": [ @@ -8043,11 +8031,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -8058,7 +8046,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.5" + "version": "0.5.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8067,14 +8055,14 @@ ], "license_file": "LICENSE-APACHE" }, - "comparable_helper 0.5.5": { + "comparable_helper 0.5.6": { "name": "comparable_helper", - "version": "0.5.5", + "version": "0.5.6", "package_url": "https://github.com/jwiegley/comparable", "repository": { "Http": { - "url": "https://static.crates.io/crates/comparable_helper/0.5.5/download", - "sha256": "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" + "url": "https://static.crates.io/crates/comparable_helper/0.5.6/download", + "sha256": "be7a1af3ce1ccc3c9a6edfc769672c5d7512959e292882beca663843a660eb9e" } }, "targets": [ @@ -8103,11 +8091,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -8118,7 +8106,7 @@ "selects": {} }, "edition": "2018", - "version": "0.5.5" + "version": "0.5.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8127,14 +8115,14 @@ ], "license_file": "LICENSE-APACHE" }, - "compression-codecs 0.4.32": { + "compression-codecs 0.4.37": { "name": "compression-codecs", - "version": "0.4.32", + "version": "0.4.37", "package_url": "https://github.com/Nullus157/async-compression", "repository": { "Http": { - "url": "https://static.crates.io/crates/compression-codecs/0.4.32/download", - "sha256": "680dc087785c5230f8e8843e2e57ac7c1c90488b6a91b88caa265410568f441b" + "url": "https://static.crates.io/crates/compression-codecs/0.4.37/download", + "sha256": "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7" } }, "targets": [ @@ -8176,15 +8164,15 @@ "target": "brotli" }, { - "id": "compression-core 0.4.30", + "id": "compression-core 0.4.31", "target": "compression_core" }, { - "id": "flate2 1.1.5", + "id": "flate2 1.1.9", "target": "flate2" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { @@ -8200,7 +8188,7 @@ "selects": {} }, "edition": "2018", - "version": "0.4.32" + "version": "0.4.37" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8209,14 +8197,14 @@ ], "license_file": null }, - "compression-core 0.4.30": { + "compression-core 0.4.31": { "name": "compression-core", - "version": "0.4.30", + "version": "0.4.31", "package_url": "https://github.com/Nullus157/async-compression", "repository": { "Http": { - "url": "https://static.crates.io/crates/compression-core/0.4.30/download", - "sha256": "3a9b614a5787ef0c8802a55766480563cb3a93b435898c422ed2a359cf811582" + "url": "https://static.crates.io/crates/compression-core/0.4.31/download", + "sha256": "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" } }, "targets": [ @@ -8239,7 +8227,7 @@ "**" ], "edition": "2018", - "version": "0.4.30" + "version": "0.4.31" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8338,7 +8326,7 @@ "target": "crossbeam_channel" }, { - "id": "erased-serde 0.4.9", + "id": "erased-serde 0.4.10", "target": "erased_serde" }, { @@ -8350,7 +8338,7 @@ "target": "ic_types" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -8358,7 +8346,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -8417,7 +8405,7 @@ "deps": { "common": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -8582,6 +8570,53 @@ ], "license_file": "LICENSE" }, + "convert_case 0.10.0": { + "name": "convert_case", + "version": "0.10.0", + "package_url": "https://github.com/rutrum/convert-case", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/convert_case/0.10.0/download", + "sha256": "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" + } + }, + "targets": [ + { + "Library": { + "crate_name": "convert_case", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "convert_case", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "unicode-segmentation 1.12.0", + "target": "unicode_segmentation" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.10.0" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "core-foundation 0.9.4": { "name": "core-foundation", "version": "0.9.4", @@ -8625,7 +8660,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -8684,7 +8719,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -8785,7 +8820,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" } ], @@ -8835,25 +8870,25 @@ "selects": { "aarch64-linux-android": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(target_arch = \"aarch64\", target_vendor = \"apple\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(target_arch = \"loongarch64\", target_os = \"linux\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] @@ -9369,7 +9404,7 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -9380,7 +9415,7 @@ "selects": { "cfg(unix)": [ { - "id": "rustix 1.1.2", + "id": "rustix 1.1.4", "target": "rustix" } ], @@ -9710,7 +9745,7 @@ "target": "libloading" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -9848,11 +9883,11 @@ "target": "csv_core" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "ryu 1.0.20", + "id": "ryu 1.0.23", "target": "ryu" }, { @@ -9910,7 +9945,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" } ], @@ -10148,15 +10183,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -10426,7 +10461,7 @@ "target": "ic_management_canister_types_private" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -10705,11 +10740,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -10779,11 +10814,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -10791,7 +10826,7 @@ "target": "strsim" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -10842,7 +10877,7 @@ "target": "darling_core" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -10897,11 +10932,11 @@ "target": "darling_core" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -11018,14 +11053,14 @@ ], "license_file": "LICENSE" }, - "data-encoding 2.9.0": { + "data-encoding 2.10.0": { "name": "data-encoding", - "version": "2.9.0", + "version": "2.10.0", "package_url": "https://github.com/ia0/data-encoding", "repository": { "Http": { - "url": "https://static.crates.io/crates/data-encoding/2.9.0/download", - "sha256": "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" + "url": "https://static.crates.io/crates/data-encoding/2.10.0/download", + "sha256": "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" } }, "targets": [ @@ -11056,7 +11091,7 @@ "selects": {} }, "edition": "2018", - "version": "2.9.0" + "version": "2.10.0" }, "license": "MIT", "license_ids": [ @@ -11152,11 +11187,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -11176,14 +11211,14 @@ ], "license_file": null }, - "dbus 0.9.9": { + "dbus 0.9.10": { "name": "dbus", - "version": "0.9.9", + "version": "0.9.10", "package_url": "https://github.com/diwic/dbus-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/dbus/0.9.9/download", - "sha256": "190b6255e8ab55a7b568df5a883e9497edc3e4821c06396612048b430e5ad1e9" + "url": "https://static.crates.io/crates/dbus/0.9.10/download", + "sha256": "21b3aa68d7e7abee336255bd7248ea965cc393f3e70411135a6f6a4b651345d4" } }, "targets": [ @@ -11208,11 +11243,11 @@ "deps": { "common": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "libdbus-sys 0.2.6", + "id": "libdbus-sys 0.2.7", "target": "libdbus_sys" } ], @@ -11226,7 +11261,7 @@ } }, "edition": "2018", - "version": "0.9.9" + "version": "0.9.10" }, "license": "Apache-2.0/MIT", "license_ids": [ @@ -11267,7 +11302,7 @@ "deps": { "common": [ { - "id": "dbus 0.9.9", + "id": "dbus 0.9.10", "target": "dbus" }, { @@ -11336,7 +11371,7 @@ "target": "num_cpus" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -11427,7 +11462,7 @@ "deps": { "common": [ { - "id": "actix-web 4.11.0", + "id": "actix-web 4.13.0", "target": "actix_web" }, { @@ -11435,11 +11470,11 @@ "target": "ahash" }, { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -11447,7 +11482,7 @@ "target": "ic_base_types" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { @@ -11459,7 +11494,7 @@ "target": "lazy_static" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -11475,7 +11510,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -11488,11 +11523,11 @@ "deps_dev": { "common": [ { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -11709,15 +11744,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -11733,14 +11768,14 @@ ], "license_file": "LICENSE-APACHE" }, - "deranged 0.5.5": { + "deranged 0.5.8": { "name": "deranged", - "version": "0.5.5", + "version": "0.5.8", "package_url": "https://github.com/jhpratt/deranged", "repository": { "Http": { - "url": "https://static.crates.io/crates/deranged/0.5.5/download", - "sha256": "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" + "url": "https://static.crates.io/crates/deranged/0.5.8/download", + "sha256": "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" } }, "targets": [ @@ -11784,7 +11819,7 @@ "selects": {} }, "edition": "2021", - "version": "0.5.5" + "version": "0.5.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -11825,11 +11860,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -11916,15 +11951,15 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -11939,14 +11974,14 @@ ], "license_file": "LICENSE" }, - "derive_more 2.0.1": { + "derive_more 2.1.1": { "name": "derive_more", - "version": "2.0.1", + "version": "2.1.1", "package_url": "https://github.com/JelteF/derive_more", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_more/2.0.1/download", - "sha256": "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" + "url": "https://static.crates.io/crates/derive_more/2.1.1/download", + "sha256": "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" } }, "targets": [ @@ -11985,13 +12020,13 @@ "proc_macro_deps": { "common": [ { - "id": "derive_more-impl 2.0.1", + "id": "derive_more-impl 2.1.1", "target": "derive_more_impl" } ], "selects": {} }, - "version": "2.0.1" + "version": "2.1.1" }, "license": "MIT", "license_ids": [ @@ -11999,14 +12034,14 @@ ], "license_file": "LICENSE" }, - "derive_more-impl 2.0.1": { + "derive_more-impl 2.1.1": { "name": "derive_more-impl", - "version": "2.0.1", + "version": "2.1.1", "package_url": "https://github.com/JelteF/derive_more", "repository": { "Http": { - "url": "https://static.crates.io/crates/derive_more-impl/2.0.1/download", - "sha256": "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" + "url": "https://static.crates.io/crates/derive_more-impl/2.1.1/download", + "sha256": "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" } }, "targets": [ @@ -12043,15 +12078,19 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "convert_case 0.10.0", + "target": "convert_case" + }, + { + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" }, { @@ -12062,7 +12101,7 @@ "selects": {} }, "edition": "2021", - "version": "2.0.1" + "version": "2.1.1" }, "license": "MIT", "license_ids": [ @@ -12305,7 +12344,7 @@ "target": "ic_http_types" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -12420,11 +12459,11 @@ "target": "console" }, { - "id": "shell-words 1.1.0", + "id": "shell-words 1.1.1", "target": "shell_words" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" }, { @@ -12839,7 +12878,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -12906,7 +12945,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -12968,7 +13007,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -13029,15 +13068,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -13240,7 +13279,7 @@ "target": "ahash" }, { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -13256,11 +13295,11 @@ "target": "candid" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -13268,7 +13307,7 @@ "target": "clap_num" }, { - "id": "clap_complete 4.5.60", + "id": "clap_complete 4.5.66", "target": "clap_complete" }, { @@ -13276,7 +13315,7 @@ "target": "colored" }, { - "id": "comfy-table 7.2.1", + "id": "comfy-table 7.2.2", "target": "comfy_table" }, { @@ -13312,19 +13351,19 @@ "target": "edit" }, { - "id": "flate2 1.1.5", + "id": "flate2 1.1.9", "target": "flate2" }, { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "fs_err" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -13424,7 +13463,7 @@ "target": "icp_ledger" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { @@ -13436,7 +13475,7 @@ "target": "keyring" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -13452,7 +13491,7 @@ "target": "prost" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -13460,7 +13499,7 @@ "target": "registry_canister" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -13468,7 +13507,7 @@ "target": "rosetta_core" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -13480,7 +13519,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -13496,7 +13535,7 @@ "target": "shlex" }, { - "id": "spinners 4.1.1", + "id": "spinners 4.2.0", "target": "spinners" }, { @@ -13512,15 +13551,15 @@ "target": "tabular" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -13564,7 +13603,7 @@ "deps": { "common": [ { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -13588,7 +13627,7 @@ "target": "ic_registry_keys" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -14002,7 +14041,7 @@ "deps": { "common": [ { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" }, { @@ -14181,14 +14220,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ena 0.14.3": { + "ena 0.14.4": { "name": "ena", - "version": "0.14.3", + "version": "0.14.4", "package_url": "https://github.com/rust-lang/ena", "repository": { "Http": { - "url": "https://static.crates.io/crates/ena/0.14.3/download", - "sha256": "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" + "url": "https://static.crates.io/crates/ena/0.14.4/download", + "sha256": "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1" } }, "targets": [ @@ -14213,14 +14252,14 @@ "deps": { "common": [ { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" } ], "selects": {} }, "edition": "2015", - "version": "0.14.3" + "version": "0.14.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14367,15 +14406,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -14391,14 +14430,14 @@ ], "license_file": "LICENSE-APACHE" }, - "env_filter 0.1.4": { + "env_filter 1.0.0": { "name": "env_filter", - "version": "0.1.4", + "version": "1.0.0", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_filter/0.1.4/download", - "sha256": "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" + "url": "https://static.crates.io/crates/env_filter/1.0.0/download", + "sha256": "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f" } }, "targets": [ @@ -14429,18 +14468,18 @@ "deps": { "common": [ { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" } ], "selects": {} }, "edition": "2021", - "version": "0.1.4" + "version": "1.0.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14499,11 +14538,11 @@ "target": "is_terminal" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -14523,14 +14562,14 @@ ], "license_file": "LICENSE-APACHE" }, - "env_logger 0.11.8": { + "env_logger 0.11.9": { "name": "env_logger", - "version": "0.11.8", + "version": "0.11.9", "package_url": "https://github.com/rust-cli/env_logger", "repository": { "Http": { - "url": "https://static.crates.io/crates/env_logger/0.11.8/download", - "sha256": "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" + "url": "https://static.crates.io/crates/env_logger/0.11.9/download", + "sha256": "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d" } }, "targets": [ @@ -14573,22 +14612,22 @@ "target": "anstyle" }, { - "id": "env_filter 0.1.4", + "id": "env_filter 1.0.0", "target": "env_filter" }, { - "id": "jiff 0.2.16", + "id": "jiff 0.2.23", "target": "jiff" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" } ], "selects": {} }, "edition": "2021", - "version": "0.11.8" + "version": "0.11.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -14692,14 +14731,14 @@ ], "license_file": "LICENSE-APACHE" }, - "erased-serde 0.4.9": { + "erased-serde 0.4.10": { "name": "erased-serde", - "version": "0.4.9", + "version": "0.4.10", "package_url": "https://github.com/dtolnay/erased-serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/erased-serde/0.4.9/download", - "sha256": "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" + "url": "https://static.crates.io/crates/erased-serde/0.4.10/download", + "sha256": "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec" } }, "targets": [ @@ -14744,7 +14783,7 @@ "deps": { "common": [ { - "id": "erased-serde 0.4.9", + "id": "erased-serde 0.4.10", "target": "build_script_build" }, { @@ -14766,7 +14805,7 @@ } }, "edition": "2021", - "version": "0.4.9" + "version": "0.4.10" }, "build_script_attrs": { "compile_data_glob": [ @@ -14819,26 +14858,39 @@ "common": [ "std" ], - "selects": {} + "selects": { + "aarch64-apple-darwin": [ + "default" + ], + "aarch64-unknown-linux-gnu": [ + "default" + ], + "x86_64-unknown-linux-gnu": [ + "default" + ], + "x86_64-unknown-nixos-gnu": [ + "default" + ] + } }, "deps": { "common": [], "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -14942,7 +14994,7 @@ "target": "concurrent_queue" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -15031,7 +15083,7 @@ "target": "event_listener" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -15186,15 +15238,15 @@ "target": "num_traits" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -15305,14 +15357,14 @@ ], "license_file": "LICENSE-APACHE" }, - "filetime 0.2.26": { + "filetime 0.2.27": { "name": "filetime", - "version": "0.2.26", + "version": "0.2.27", "package_url": "https://github.com/alexcrichton/filetime", "repository": { "Http": { - "url": "https://static.crates.io/crates/filetime/0.2.26/download", - "sha256": "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" + "url": "https://static.crates.io/crates/filetime/0.2.27/download", + "sha256": "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" } }, "targets": [ @@ -15344,26 +15396,20 @@ "selects": { "cfg(target_os = \"redox\")": [ { - "id": "libredox 0.1.10", + "id": "libredox 0.1.14", "target": "libredox" } ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } - ], - "cfg(windows)": [ - { - "id": "windows-sys 0.60.2", - "target": "windows_sys" - } ] } }, "edition": "2018", - "version": "0.2.26" + "version": "0.2.27" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -15372,14 +15418,14 @@ ], "license_file": "LICENSE-APACHE" }, - "find-msvc-tools 0.1.4": { + "find-msvc-tools 0.1.9": { "name": "find-msvc-tools", - "version": "0.1.4", + "version": "0.1.9", "package_url": "https://github.com/rust-lang/cc-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/find-msvc-tools/0.1.4/download", - "sha256": "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" + "url": "https://static.crates.io/crates/find-msvc-tools/0.1.9/download", + "sha256": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" } }, "targets": [ @@ -15402,7 +15448,7 @@ "**" ], "edition": "2018", - "version": "0.1.4" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15527,14 +15573,14 @@ ], "license_file": "LICENSE" }, - "flate2 1.1.5": { + "flate2 1.1.9": { "name": "flate2", - "version": "1.1.5", + "version": "1.1.9", "package_url": "https://github.com/rust-lang/flate2-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/flate2/1.1.5/download", - "sha256": "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" + "url": "https://static.crates.io/crates/flate2/1.1.9/download", + "sha256": "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" } }, "targets": [ @@ -15579,7 +15625,7 @@ "selects": {} }, "edition": "2018", - "version": "1.1.5" + "version": "1.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -15811,14 +15857,14 @@ ], "license_file": "LICENSE" }, - "fs-err 3.1.3": { + "fs-err 3.3.0": { "name": "fs-err", - "version": "3.1.3", + "version": "3.3.0", "package_url": "https://github.com/andrewhickman/fs-err", "repository": { "Http": { - "url": "https://static.crates.io/crates/fs-err/3.1.3/download", - "sha256": "6ad492b2cf1d89d568a43508ab24f98501fe03f2f31c01e1d0fe7366a71745d2" + "url": "https://static.crates.io/crates/fs-err/3.3.0/download", + "sha256": "73fde052dbfc920003cfd2c8e2c6e6d4cc7c1091538c3a24226cec0665ab08c0" } }, "targets": [ @@ -15855,14 +15901,14 @@ "deps": { "common": [ { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "3.1.3" + "version": "3.3.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -15884,7 +15930,7 @@ "selects": {} } }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -15925,7 +15971,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -15985,14 +16031,14 @@ ], "license_file": "LICENSE.txt" }, - "futures 0.3.31": { + "futures 0.3.32": { "name": "futures", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures/0.3.31/download", - "sha256": "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" + "url": "https://static.crates.io/crates/futures/0.3.32/download", + "sha256": "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" } }, "targets": [ @@ -16028,38 +16074,38 @@ "deps": { "common": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-executor 0.3.31", + "id": "futures-executor 0.3.32", "target": "futures_executor" }, { - "id": "futures-io 0.3.31", + "id": "futures-io 0.3.32", "target": "futures_io" }, { - "id": "futures-sink 0.3.31", + "id": "futures-sink 0.3.32", "target": "futures_sink" }, { - "id": "futures-task 0.3.31", + "id": "futures-task 0.3.32", "target": "futures_task" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" } ], "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16068,14 +16114,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-channel 0.3.31": { + "futures-channel 0.3.32": { "name": "futures-channel", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-channel/0.3.31/download", - "sha256": "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" + "url": "https://static.crates.io/crates/futures-channel/0.3.32/download", + "sha256": "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" } }, "targets": [ @@ -16110,18 +16156,18 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-sink 0.3.31", + "id": "futures-sink 0.3.32", "target": "futures_sink" } ], "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16130,14 +16176,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-core 0.3.31": { + "futures-core 0.3.32": { "name": "futures-core", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-core/0.3.31/download", - "sha256": "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" + "url": "https://static.crates.io/crates/futures-core/0.3.32/download", + "sha256": "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" } }, "targets": [ @@ -16168,7 +16214,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16177,14 +16223,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-executor 0.3.31": { + "futures-executor 0.3.32": { "name": "futures-executor", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-executor/0.3.31/download", - "sha256": "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" + "url": "https://static.crates.io/crates/futures-executor/0.3.32/download", + "sha256": "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" } }, "targets": [ @@ -16216,22 +16262,22 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-task 0.3.31", + "id": "futures-task 0.3.32", "target": "futures_task" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" } ], "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16240,14 +16286,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-io 0.3.31": { + "futures-io 0.3.32": { "name": "futures-io", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-io/0.3.31/download", - "sha256": "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" + "url": "https://static.crates.io/crates/futures-io/0.3.32/download", + "sha256": "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" } }, "targets": [ @@ -16276,7 +16322,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16285,14 +16331,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-macro 0.3.31": { + "futures-macro 0.3.32": { "name": "futures-macro", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-macro/0.3.31/download", - "sha256": "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" + "url": "https://static.crates.io/crates/futures-macro/0.3.32/download", + "sha256": "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" } }, "targets": [ @@ -16317,22 +16363,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16341,14 +16387,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-sink 0.3.31": { + "futures-sink 0.3.32": { "name": "futures-sink", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-sink/0.3.31/download", - "sha256": "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" + "url": "https://static.crates.io/crates/futures-sink/0.3.32/download", + "sha256": "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" } }, "targets": [ @@ -16379,7 +16425,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16388,14 +16434,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-task 0.3.31": { + "futures-task 0.3.32": { "name": "futures-task", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-task/0.3.31/download", - "sha256": "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" + "url": "https://static.crates.io/crates/futures-task/0.3.32/download", + "sha256": "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" } }, "targets": [ @@ -16425,7 +16471,7 @@ "selects": {} }, "edition": "2018", - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16434,14 +16480,14 @@ ], "license_file": "LICENSE-APACHE" }, - "futures-util 0.3.31": { + "futures-util 0.3.32": { "name": "futures-util", - "version": "0.3.31", + "version": "0.3.32", "package_url": "https://github.com/rust-lang/futures-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/futures-util/0.3.31/download", - "sha256": "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" + "url": "https://static.crates.io/crates/futures-util/0.3.32/download", + "sha256": "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" } }, "targets": [ @@ -16485,39 +16531,35 @@ "deps": { "common": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-io 0.3.31", + "id": "futures-io 0.3.32", "target": "futures_io" }, { - "id": "futures-sink 0.3.31", + "id": "futures-sink 0.3.32", "target": "futures_sink" }, { - "id": "futures-task 0.3.31", + "id": "futures-task 0.3.32", "target": "futures_task" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "pin-utils 0.1.0", - "target": "pin_utils" - }, - { - "id": "slab 0.4.11", + "id": "slab 0.4.12", "target": "slab" } ], @@ -16527,13 +16569,13 @@ "proc_macro_deps": { "common": [ { - "id": "futures-macro 0.3.31", + "id": "futures-macro 0.3.32", "target": "futures_macro" } ], "selects": {} }, - "version": "0.3.31" + "version": "0.3.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16556,7 +16598,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -16568,15 +16610,15 @@ "target": "axum_otel_metrics" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "fs_err" }, { @@ -16592,7 +16634,7 @@ "target": "opentelemetry" }, { - "id": "retry 2.1.0", + "id": "retry 2.2.0", "target": "retry" }, { @@ -16600,7 +16642,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -16616,11 +16658,11 @@ "target": "slog_term" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" } ], @@ -16738,14 +16780,14 @@ ], "license_file": "LICENSE" }, - "getrandom 0.2.16": { + "getrandom 0.2.17": { "name": "getrandom", - "version": "0.2.16", + "version": "0.2.17", "package_url": "https://github.com/rust-random/getrandom", "repository": { "Http": { - "url": "https://static.crates.io/crates/getrandom/0.2.16/download", - "sha256": "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" + "url": "https://static.crates.io/crates/getrandom/0.2.17/download", + "sha256": "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" } }, "targets": [ @@ -16802,24 +16844,24 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "wasm32-unknown-unknown": [ { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ] } }, "edition": "2018", - "version": "0.2.16" + "version": "0.2.17" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16889,13 +16931,13 @@ "selects": { "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [ { - "id": "wasip2 1.0.1+wasi-0.2.4", + "id": "wasip2 1.0.2+wasi-0.2.9", "target": "wasip2" } ], @@ -16907,43 +16949,43 @@ ], "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"netbsd\")": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"solaris\")": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"vxworks\")": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] @@ -16970,6 +17012,148 @@ ], "license_file": "LICENSE-APACHE" }, + "getrandom 0.4.2": { + "name": "getrandom", + "version": "0.4.2", + "package_url": "https://github.com/rust-random/getrandom", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/getrandom/0.4.2/download", + "sha256": "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" + } + }, + "targets": [ + { + "Library": { + "crate_name": "getrandom", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "getrandom", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "cfg-if 1.0.4", + "target": "cfg_if" + }, + { + "id": "getrandom 0.4.2", + "target": "build_script_build" + } + ], + "selects": { + "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [ + { + "id": "wasip2 1.0.2+wasi-0.2.9", + "target": "wasip2" + } + ], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p3\"))": [ + { + "id": "wasip3 0.4.0+wasi-0.3.0-rc-2026-01-06", + "target": "wasip3" + } + ], + "cfg(all(target_os = \"uefi\", getrandom_backend = \"efi_rng\"))": [ + { + "id": "r-efi 6.0.0", + "target": "r_efi" + } + ], + "cfg(any(target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"hurd\", target_os = \"illumos\", target_os = \"cygwin\", all(target_os = \"horizon\", target_arch = \"arm\")))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(any(target_os = \"haiku\", target_os = \"redox\", target_os = \"nto\", target_os = \"aix\"))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(any(target_os = \"ios\", target_os = \"visionos\", target_os = \"watchos\", target_os = \"tvos\"))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(any(target_os = \"macos\", target_os = \"openbsd\", target_os = \"vita\", target_os = \"emscripten\"))": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(target_os = \"netbsd\")": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(target_os = \"solaris\")": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ], + "cfg(target_os = \"vxworks\")": [ + { + "id": "libc 0.2.183", + "target": "libc" + } + ] + } + }, + "edition": "2024", + "version": "0.4.2" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "gimli 0.26.2": { "name": "gimli", "version": "0.26.2", @@ -17120,19 +17304,19 @@ "deps": { "common": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], @@ -17211,14 +17395,14 @@ ], "license_file": "LICENSE-APACHE" }, - "h2 0.4.12": { + "h2 0.4.13": { "name": "h2", - "version": "0.4.12", + "version": "0.4.13", "package_url": "https://github.com/hyperium/h2", "repository": { "Http": { - "url": "https://static.crates.io/crates/h2/0.4.12/download", - "sha256": "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" + "url": "https://static.crates.io/crates/h2/0.4.13/download", + "sha256": "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" } }, "targets": [ @@ -17255,42 +17439,42 @@ "target": "fnv" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-sink 0.3.31", + "id": "futures-sink 0.3.32", "target": "futures_sink" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { - "id": "slab 0.4.11", + "id": "slab 0.4.12", "target": "slab" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], "selects": {} }, "edition": "2021", - "version": "0.4.12" + "version": "0.4.13" }, "license": "MIT", "license_ids": [ @@ -17373,7 +17557,7 @@ "target": "cfg_if" }, { - "id": "zerocopy 0.8.27", + "id": "zerocopy 0.8.42", "target": "zerocopy" } ], @@ -17575,14 +17759,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hashbrown 0.16.0": { + "hashbrown 0.16.1": { "name": "hashbrown", - "version": "0.16.0", + "version": "0.16.1", "package_url": "https://github.com/rust-lang/hashbrown", "repository": { "Http": { - "url": "https://static.crates.io/crates/hashbrown/0.16.0/download", - "sha256": "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" + "url": "https://static.crates.io/crates/hashbrown/0.16.1/download", + "sha256": "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" } }, "targets": [ @@ -17633,7 +17817,7 @@ "selects": {} }, "edition": "2021", - "version": "0.16.0" + "version": "0.16.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -18153,7 +18337,7 @@ "target": "fnv" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" } ], @@ -18169,14 +18353,14 @@ ], "license_file": "LICENSE-APACHE" }, - "http 1.3.1": { + "http 1.4.0": { "name": "http", - "version": "1.3.1", + "version": "1.4.0", "package_url": "https://github.com/hyperium/http", "repository": { "Http": { - "url": "https://static.crates.io/crates/http/1.3.1/download", - "sha256": "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" + "url": "https://static.crates.io/crates/http/1.4.0/download", + "sha256": "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" } }, "targets": [ @@ -18212,18 +18396,14 @@ "target": "bytes" }, { - "id": "fnv 1.0.7", - "target": "fnv" - }, - { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" } ], "selects": {} }, - "edition": "2018", - "version": "1.3.1" + "edition": "2021", + "version": "1.4.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -18268,7 +18448,7 @@ "target": "bytes" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" } ], @@ -18325,11 +18505,11 @@ "target": "bytes" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -18337,7 +18517,7 @@ "target": "http_body" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -18553,14 +18733,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hyper 1.7.0": { + "hyper 1.8.1": { "name": "hyper", - "version": "1.7.0", + "version": "1.8.1", "package_url": "https://github.com/hyperium/hyper", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper/1.7.0/download", - "sha256": "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" + "url": "https://static.crates.io/crates/hyper/1.8.1/download", + "sha256": "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" } }, "targets": [ @@ -18604,19 +18784,19 @@ "target": "bytes" }, { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "h2 0.4.12", + "id": "h2 0.4.13", "target": "h2" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -18632,11 +18812,11 @@ "target": "httpdate" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -18648,7 +18828,7 @@ "target": "smallvec" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -18659,7 +18839,7 @@ "selects": {} }, "edition": "2021", - "version": "1.7.0" + "version": "1.8.1" }, "license": "MIT", "license_ids": [ @@ -18733,36 +18913,36 @@ "deps": { "common": [ { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "rustls-native-certs 0.8.2", + "id": "rustls-native-certs 0.8.3", "target": "rustls_native_certs" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -18777,31 +18957,31 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], "x86_64-pc-windows-msvc": [ { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ] @@ -18850,19 +19030,19 @@ "deps": { "common": [ { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -18882,14 +19062,14 @@ ], "license_file": "LICENSE-APACHE" }, - "hyper-util 0.1.17": { + "hyper-util 0.1.20": { "name": "hyper-util", - "version": "0.1.17", + "version": "0.1.20", "package_url": "https://github.com/hyperium/hyper-util", "repository": { "Http": { - "url": "https://static.crates.io/crates/hyper-util/0.1.17/download", - "sha256": "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" + "url": "https://static.crates.io/crates/hyper-util/0.1.20/download", + "sha256": "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" } }, "targets": [ @@ -18915,6 +19095,7 @@ "common": [ "client", "client-legacy", + "client-pool", "client-proxy", "client-proxy-system", "default", @@ -18941,19 +19122,15 @@ "target": "bytes" }, { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -18961,15 +19138,15 @@ "target": "http_body" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { - "id": "ipnet 2.11.0", + "id": "ipnet 2.12.0", "target": "ipnet" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -18977,43 +19154,47 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "socket2 0.6.1", + "id": "socket2 0.6.3", "target": "socket2" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, + { + "id": "tower-layer 0.3.3", + "target": "tower_layer" + }, { "id": "tower-service 0.3.3", "target": "tower_service" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "system-configuration 0.6.1", + "id": "system-configuration 0.7.0", "target": "system_configuration" } ], "x86_64-pc-windows-msvc": [ { - "id": "windows-registry 0.5.3", + "id": "windows-registry 0.6.1", "target": "windows_registry" } ] } }, "edition": "2021", - "version": "0.1.17" + "version": "0.1.20" }, "license": "MIT", "license_ids": [ @@ -19021,14 +19202,14 @@ ], "license_file": "LICENSE" }, - "iana-time-zone 0.1.64": { + "iana-time-zone 0.1.65": { "name": "iana-time-zone", - "version": "0.1.64", + "version": "0.1.65", "package_url": "https://github.com/strawlab/iana-time-zone", "repository": { "Http": { - "url": "https://static.crates.io/crates/iana-time-zone/0.1.64/download", - "sha256": "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" + "url": "https://static.crates.io/crates/iana-time-zone/0.1.65/download", + "sha256": "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" } }, "targets": [ @@ -19061,15 +19242,15 @@ "selects": { "cfg(all(target_arch = \"wasm32\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], @@ -19100,7 +19281,7 @@ } }, "edition": "2021", - "version": "0.1.64" + "version": "0.1.65" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -19175,7 +19356,7 @@ "deps": { "common": [ { - "id": "cc 1.2.45", + "id": "cc 1.2.56", "target": "cc" } ], @@ -19224,7 +19405,7 @@ "deps": { "common": [ { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { @@ -19248,7 +19429,7 @@ "target": "slog" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -19256,7 +19437,7 @@ "target": "tonic" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" } ], @@ -19400,7 +19581,7 @@ "deps": { "common": [ { - "id": "arc-swap 1.7.1", + "id": "arc-swap 1.8.2", "target": "arc_swap" }, { @@ -19408,7 +19589,7 @@ "target": "async_channel" }, { - "id": "async-lock 3.4.1", + "id": "async-lock 3.4.2", "target": "async_lock" }, { @@ -19444,7 +19625,7 @@ "target": "elliptic_curve" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -19452,7 +19633,7 @@ "target": "hex" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -19460,7 +19641,7 @@ "target": "http_body" }, { - "id": "ic-certification 3.0.3", + "id": "ic-certification 3.1.0", "target": "ic_certification" }, { @@ -19500,7 +19681,7 @@ "target": "rangemap" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -19524,7 +19705,7 @@ "target": "sha2" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.4", "target": "simple_asn1" }, { @@ -19532,11 +19713,11 @@ "target": "stop_token" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" }, { @@ -19544,14 +19725,14 @@ "target": "tower_service" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], "selects": { "cfg(not(target_family = \"wasm\"))": [ { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ] @@ -19619,7 +19800,7 @@ "deps": { "common": [ { - "id": "arc-swap 1.7.1", + "id": "arc-swap 1.8.2", "target": "arc_swap" }, { @@ -19627,7 +19808,7 @@ "target": "async_channel" }, { - "id": "async-lock 3.4.1", + "id": "async-lock 3.4.2", "target": "async_lock" }, { @@ -19667,7 +19848,7 @@ "target": "elliptic_curve" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -19675,7 +19856,7 @@ "target": "hex" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -19687,7 +19868,7 @@ "target": "http_body_util" }, { - "id": "ic-certification 3.0.3", + "id": "ic-certification 3.1.0", "target": "ic_certification" }, { @@ -19731,7 +19912,7 @@ "target": "rangemap" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -19763,11 +19944,11 @@ "target": "stop_token" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" }, { @@ -19775,14 +19956,14 @@ "target": "tower_service" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], "selects": { "cfg(not(target_family = \"wasm\"))": [ { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ] @@ -19857,7 +20038,7 @@ "target": "candid" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -20081,7 +20262,7 @@ "target": "backoff" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -20089,7 +20270,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { @@ -20097,7 +20278,7 @@ "target": "hyper_rustls" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { @@ -20137,7 +20318,7 @@ "target": "prost" }, { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "rustls" }, { @@ -20145,15 +20326,15 @@ "target": "serde_cbor" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -20319,7 +20500,7 @@ "deps": { "common": [ { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -20363,7 +20544,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -20463,7 +20644,7 @@ "target": "icrc_ledger_types" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -20471,7 +20652,7 @@ "target": "prost" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -20487,15 +20668,15 @@ "target": "sha2" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.4", "target": "simple_asn1" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -20687,7 +20868,7 @@ "target": "scoped_threadpool" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -20752,7 +20933,7 @@ "target": "ic0" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -20764,11 +20945,11 @@ "target": "serde_bytes" }, { - "id": "slotmap 1.0.7", + "id": "slotmap 1.1.1", "target": "slotmap" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -20844,7 +21025,7 @@ "target": "ic0" }, { - "id": "slotmap 1.0.7", + "id": "slotmap 1.1.1", "target": "slotmap" }, { @@ -20915,15 +21096,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -20994,7 +21175,7 @@ "target": "ic0" }, { - "id": "slotmap 1.0.7", + "id": "slotmap 1.1.1", "target": "slotmap" } ], @@ -21106,14 +21287,14 @@ "license_ids": [], "license_file": "LICENSE" }, - "ic-certification 3.0.3": { + "ic-certification 3.1.0": { "name": "ic-certification", - "version": "3.0.3", + "version": "3.1.0", "package_url": "https://github.com/dfinity/response-verification", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-certification/3.0.3/download", - "sha256": "ffb40d73f9f8273dc6569a68859003bbd467c9dc6d53c6fd7d174742f857209d" + "url": "https://static.crates.io/crates/ic-certification/3.1.0/download", + "sha256": "7c11273a40f8d67926ee423b0bd21381ae8419db809b42f33c5cb3319549b40f" } }, "targets": [ @@ -21164,7 +21345,7 @@ "selects": {} }, "edition": "2021", - "version": "3.0.3" + "version": "3.1.0" }, "license": "Apache-2.0", "license_ids": [ @@ -21347,7 +21528,7 @@ "target": "serde" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" } ], @@ -22034,7 +22215,7 @@ "target": "strum" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { @@ -22423,7 +22604,7 @@ "target": "serde_bytes" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -22655,11 +22836,11 @@ "target": "pem" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.4", "target": "simple_asn1" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -22709,13 +22890,13 @@ "selects": { "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" } ], "cfg(not(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\")))": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" } ] @@ -22785,7 +22966,7 @@ "target": "hkdf" }, { - "id": "ic_principal 0.1.1", + "id": "ic_principal 0.1.2", "target": "ic_principal" }, { @@ -22797,7 +22978,7 @@ "target": "rand" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { @@ -22874,7 +23055,7 @@ "target": "hkdf" }, { - "id": "ic_principal 0.1.1", + "id": "ic_principal 0.1.2", "target": "ic_principal" }, { @@ -22886,7 +23067,7 @@ "target": "rand" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { @@ -22910,9 +23091,12 @@ "version": "0.2.0", "package_url": "https://github.com/dfinity/ic", "repository": { - "Http": { - "url": "https://static.crates.io/crates/ic-error-types/0.2.0/download", - "sha256": "bbeeb3d91aa179d6496d7293becdacedfc413c825cac79fd54ea1906f003ee55" + "Git": { + "remote": "https://github.com/dfinity/ic.git", + "commitish": { + "Rev": "89cc1c20223532c900b94de5bc6bd8cbde278797" + }, + "strip_prefix": "packages/ic-error-types" } }, "targets": [ @@ -22936,6 +23120,14 @@ ], "deps": { "common": [ + { + "id": "ic-heap-bytes 0.9.0", + "target": "ic_heap_bytes" + }, + { + "id": "regex-lite 0.1.9", + "target": "regex_lite" + }, { "id": "serde 1.0.228", "target": "serde" @@ -22947,7 +23139,7 @@ ], "selects": {} }, - "edition": "2021", + "edition": "2024", "proc_macro_deps": { "common": [ { @@ -23008,7 +23200,7 @@ "target": "prometheus" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" } ], @@ -23073,15 +23265,15 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -23133,15 +23325,15 @@ "target": "async_stream" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { @@ -23153,7 +23345,7 @@ "target": "slog" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -23229,11 +23421,11 @@ "target": "slog" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" } ], @@ -23401,7 +23593,7 @@ "target": "serde_bytes" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -23507,7 +23699,7 @@ "target": "ic_ledger_core" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -23531,7 +23723,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" } ], @@ -23631,7 +23823,7 @@ "target": "ic_cdk_timers" }, { - "id": "ic-certification 3.0.3", + "id": "ic-certification 3.1.0", "target": "ic_certification" }, { @@ -23663,7 +23855,7 @@ "target": "ic_ledger_hash_of" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -23850,7 +24042,7 @@ "target": "serde_bytes" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -24022,11 +24214,11 @@ "target": "strum" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" } ], @@ -24083,7 +24275,7 @@ "deps": { "common": [ { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -24462,7 +24654,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -24490,7 +24682,7 @@ "target": "slog_json" }, { - "id": "slog-scope 4.4.0", + "id": "slog-scope 4.4.1", "target": "slog_scope" }, { @@ -24534,11 +24726,11 @@ "deps": { "common": [ { - "id": "actix-web 4.11.0", + "id": "actix-web 4.13.0", "target": "actix_web" }, { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -24550,11 +24742,11 @@ "target": "candid" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -24570,11 +24762,11 @@ "target": "dotenv" }, { - "id": "env_logger 0.11.8", + "id": "env_logger 0.11.9", "target": "env_logger" }, { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "fs_err" }, { @@ -24582,11 +24774,11 @@ "target": "fs2" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -24658,7 +24850,7 @@ "target": "ic_types" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { @@ -24670,7 +24862,7 @@ "target": "lazy_static" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -24686,7 +24878,7 @@ "target": "prometheus_http_query" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -24694,7 +24886,7 @@ "target": "registry_canister" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -24702,7 +24894,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -24714,11 +24906,11 @@ "target": "strum" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -24934,7 +25126,7 @@ "deps": { "common": [ { - "id": "actix-web 4.11.0", + "id": "actix-web 4.13.0", "target": "actix_web" }, { @@ -24942,7 +25134,7 @@ "target": "ahash" }, { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -24950,11 +25142,11 @@ "target": "candid" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -24982,7 +25174,7 @@ "target": "ic_types" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { @@ -24990,7 +25182,7 @@ "target": "registry_canister" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -24998,7 +25190,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -25006,11 +25198,11 @@ "target": "strum" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -25078,7 +25270,7 @@ "deps": { "common": [ { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -25086,7 +25278,7 @@ "target": "ic_adapter_metrics_client" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -25098,7 +25290,7 @@ "target": "prometheus" }, { - "id": "tokio-metrics 0.4.5", + "id": "tokio-metrics 0.4.9", "target": "tokio_metrics" } ], @@ -25118,14 +25310,14 @@ "license_ids": [], "license_file": null }, - "ic-metrics-encoder 1.1.1": { + "ic-metrics-encoder 1.1.2": { "name": "ic-metrics-encoder", - "version": "1.1.1", + "version": "1.1.2", "package_url": "https://github.com/dfinity/metrics-encoder", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic-metrics-encoder/1.1.1/download", - "sha256": "8b5c7628eac357aecda461130f8074468be5aa4d258a002032d82d817f79f1f8" + "url": "https://static.crates.io/crates/ic-metrics-encoder/1.1.2/download", + "sha256": "36e10842d8cc059a437567811d966cd8fab06e79d3382e4535db2a501cadb192" } }, "targets": [ @@ -25148,7 +25340,7 @@ "**" ], "edition": "2021", - "version": "1.1.1" + "version": "1.1.2" }, "license": "Apache-2.0", "license_ids": [ @@ -25282,7 +25474,7 @@ "target": "prost" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" } ], @@ -25603,7 +25795,7 @@ "target": "ic_ledger_core" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -25643,7 +25835,7 @@ "target": "prost" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -25651,7 +25843,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" } ], @@ -25873,7 +26065,7 @@ "target": "ic_stable_structures" }, { - "id": "ic_principal 0.1.1", + "id": "ic_principal 0.1.2", "target": "ic_principal" }, { @@ -26006,7 +26198,7 @@ "deps": { "common": [ { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" } ], @@ -26160,7 +26352,7 @@ "target": "candid" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -26172,7 +26364,7 @@ "target": "prost" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -26619,7 +26811,7 @@ "target": "candid" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -26627,7 +26819,7 @@ "target": "ic_cdk" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -26700,7 +26892,7 @@ "target": "ic_cdk_timers" }, { - "id": "slotmap 1.0.7", + "id": "slotmap 1.1.1", "target": "slotmap" } ], @@ -26748,7 +26940,7 @@ "deps": { "common": [ { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" } ], @@ -26808,7 +27000,7 @@ "target": "lazy_static" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -26816,7 +27008,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" } ], @@ -26826,7 +27018,7 @@ "proc_macro_deps": { "common": [ { - "id": "rust_decimal_macros 1.39.0", + "id": "rust_decimal_macros 1.40.0", "target": "rust_decimal_macros" } ], @@ -26877,7 +27069,7 @@ "target": "candid" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -27049,11 +27241,11 @@ "target": "candid_parser" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -27065,7 +27257,7 @@ "target": "dyn_clone" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -27105,7 +27297,7 @@ "target": "ic_management_canister_types_private" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -27297,7 +27489,7 @@ "target": "registry_canister" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -27342,7 +27534,7 @@ "target": "ic_nns_governance_derive_self_describing" }, { - "id": "rust_decimal_macros 1.39.0", + "id": "rust_decimal_macros 1.40.0", "target": "rust_decimal_macros" }, { @@ -27535,15 +27727,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -27819,7 +28011,7 @@ "target": "candid" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -27839,7 +28031,7 @@ "target": "rewards_calculation" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -27899,7 +28091,7 @@ "target": "candid" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -27919,7 +28111,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -28079,7 +28271,7 @@ "target": "serde" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -28359,7 +28551,7 @@ "target": "serde_cbor" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -28555,15 +28747,15 @@ "target": "ic_types" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -28718,7 +28910,7 @@ "target": "candid" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -28774,7 +28966,7 @@ "target": "tree_deserializer" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -29305,7 +29497,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -29361,7 +29553,7 @@ "target": "strum" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" } ], @@ -29430,7 +29622,7 @@ "target": "hmac" }, { - "id": "ic_principal 0.1.1", + "id": "ic_principal 0.1.2", "target": "ic_principal" }, { @@ -29458,7 +29650,7 @@ "target": "sha2" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.4", "target": "simple_asn1" }, { @@ -29540,15 +29732,15 @@ "target": "candid_utils" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -29596,7 +29788,7 @@ "target": "ic_management_canister_types_private" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -29728,7 +29920,7 @@ "target": "rand_chacha" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -29740,7 +29932,7 @@ "target": "serde_bytes" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -29752,7 +29944,7 @@ "target": "strum" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -29770,7 +29962,7 @@ "target": "ic_nervous_system_common_build_metadata" }, { - "id": "rust_decimal_macros 1.39.0", + "id": "rust_decimal_macros 1.40.0", "target": "rust_decimal_macros" }, { @@ -29866,11 +30058,11 @@ "target": "candid" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -29918,7 +30110,7 @@ "target": "serde_bytes" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -30035,7 +30227,7 @@ "target": "num_traits" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" } ], @@ -30045,7 +30237,7 @@ "proc_macro_deps": { "common": [ { - "id": "rust_decimal_macros 1.39.0", + "id": "rust_decimal_macros 1.40.0", "target": "rust_decimal_macros" } ], @@ -30100,7 +30292,7 @@ "target": "cycles_minting_canister" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -30144,7 +30336,7 @@ "target": "num_traits" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" } ], @@ -30349,11 +30541,11 @@ "target": "candid" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -30381,7 +30573,7 @@ "target": "ic_management_canister_types_private" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -30531,7 +30723,7 @@ "target": "candid" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -30563,7 +30755,7 @@ "target": "ic_ledger_core" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -30631,7 +30823,7 @@ "target": "prost" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -30653,7 +30845,7 @@ "target": "async_trait" }, { - "id": "rust_decimal_macros 1.39.0", + "id": "rust_decimal_macros 1.40.0", "target": "rust_decimal_macros" } ], @@ -30733,7 +30925,7 @@ "target": "candid" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -30809,7 +31001,7 @@ "target": "candid" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -30837,7 +31029,7 @@ "target": "ic_management_canister_types_private" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -30909,7 +31101,7 @@ "target": "serde_bytes" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" } ], @@ -30963,7 +31155,7 @@ "deps": { "common": [ { - "id": "ic_principal 0.1.1", + "id": "ic_principal 0.1.2", "target": "ic_principal" } ], @@ -31025,7 +31217,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -31041,7 +31233,7 @@ "target": "prost" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -31062,7 +31254,7 @@ "target": "cvt" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ] @@ -31115,7 +31307,7 @@ "target": "hex" }, { - "id": "ic-certification 3.0.3", + "id": "ic-certification 3.1.0", "target": "ic_certification" }, { @@ -31139,7 +31331,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -31203,7 +31395,7 @@ "target": "hex" }, { - "id": "ic-certification 3.0.3", + "id": "ic-certification 3.1.0", "target": "ic_certification" }, { @@ -31227,7 +31419,7 @@ "target": "sha2" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -31382,7 +31574,7 @@ "target": "serde_cbor" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -31394,7 +31586,7 @@ "target": "strum" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { @@ -31405,7 +31597,7 @@ "selects": { "cfg(not(all(target_arch = \"wasm32\", target_os = \"unknown\")))": [ { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" } ] @@ -31527,7 +31719,7 @@ "target": "candid" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -31559,15 +31751,15 @@ "target": "strum" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -31726,11 +31918,11 @@ "deps": { "common": [ { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -31939,7 +32131,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -31947,15 +32139,15 @@ "target": "candid" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { - "id": "libflate 2.2.0", + "id": "libflate 2.2.1", "target": "libflate" }, { - "id": "rustc-demangle 0.1.26", + "id": "rustc-demangle 0.1.27", "target": "rustc_demangle" }, { @@ -31963,7 +32155,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -32241,14 +32433,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ic_principal 0.1.1": { + "ic_principal 0.1.2": { "name": "ic_principal", - "version": "0.1.1", + "version": "0.1.2", "package_url": "https://github.com/dfinity/candid", "repository": { "Http": { - "url": "https://static.crates.io/crates/ic_principal/0.1.1/download", - "sha256": "1762deb6f7c8d8c2bdee4b6c5a47b60195b74e9b5280faa5ba29692f8e17429c" + "url": "https://static.crates.io/crates/ic_principal/0.1.2/download", + "sha256": "8b2b6c5941dfd659e77b262342fa58ad49489367ad026255cda8c43682d0c534" } }, "targets": [ @@ -32291,7 +32483,7 @@ "target": "crc32fast" }, { - "id": "data-encoding 2.9.0", + "id": "data-encoding 2.10.0", "target": "data_encoding" }, { @@ -32310,7 +32502,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.1" + "version": "0.1.2" }, "license": "Apache-2.0", "license_ids": [ @@ -32357,7 +32549,7 @@ "target": "candid" }, { - "id": "comparable 0.5.5", + "id": "comparable 0.5.6", "target": "comparable" }, { @@ -32728,7 +32920,7 @@ "target": "strum" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" } ], @@ -33033,14 +33225,14 @@ ], "license_file": "LICENSE" }, - "icu_properties 2.1.1": { + "icu_properties 2.1.2": { "name": "icu_properties", - "version": "2.1.1", + "version": "2.1.2", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_properties/2.1.1/download", - "sha256": "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" + "url": "https://static.crates.io/crates/icu_properties/2.1.2/download", + "sha256": "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" } }, "targets": [ @@ -33079,7 +33271,7 @@ "target": "icu_locale_core" }, { - "id": "icu_properties_data 2.1.1", + "id": "icu_properties_data 2.1.2", "target": "icu_properties_data" }, { @@ -33098,7 +33290,7 @@ "selects": {} }, "edition": "2021", - "version": "2.1.1" + "version": "2.1.2" }, "license": "Unicode-3.0", "license_ids": [ @@ -33106,14 +33298,14 @@ ], "license_file": "LICENSE" }, - "icu_properties_data 2.1.1": { + "icu_properties_data 2.1.2": { "name": "icu_properties_data", - "version": "2.1.1", + "version": "2.1.2", "package_url": "https://github.com/unicode-org/icu4x", "repository": { "Http": { - "url": "https://static.crates.io/crates/icu_properties_data/2.1.1/download", - "sha256": "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" + "url": "https://static.crates.io/crates/icu_properties_data/2.1.2/download", + "sha256": "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" } }, "targets": [ @@ -33150,14 +33342,14 @@ "deps": { "common": [ { - "id": "icu_properties_data 2.1.1", + "id": "icu_properties_data 2.1.2", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "2.1.1" + "version": "2.1.2" }, "build_script_attrs": { "compile_data_glob": [ @@ -33258,14 +33450,14 @@ ], "license_file": "LICENSE" }, - "id-arena 2.2.1": { + "id-arena 2.3.0": { "name": "id-arena", - "version": "2.2.1", + "version": "2.3.0", "package_url": "https://github.com/fitzgen/id-arena", "repository": { "Http": { - "url": "https://static.crates.io/crates/id-arena/2.2.1/download", - "sha256": "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005" + "url": "https://static.crates.io/crates/id-arena/2.3.0/download", + "sha256": "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" } }, "targets": [ @@ -33294,8 +33486,8 @@ ], "selects": {} }, - "edition": "2015", - "version": "2.2.1" + "edition": "2021", + "version": "2.3.0" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -33450,7 +33642,7 @@ "target": "icu_normalizer" }, { - "id": "icu_properties 2.1.1", + "id": "icu_properties 2.1.2", "target": "icu_properties" } ], @@ -33589,14 +33781,14 @@ ], "license_file": "LICENSE-APACHE" }, - "indexmap 2.12.0": { + "indexmap 2.13.0": { "name": "indexmap", - "version": "2.12.0", + "version": "2.13.0", "package_url": "https://github.com/indexmap-rs/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.12.0/download", - "sha256": "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" + "url": "https://static.crates.io/crates/indexmap/2.13.0/download", + "sha256": "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" } }, "targets": [ @@ -33633,7 +33825,7 @@ "target": "equivalent" }, { - "id": "hashbrown 0.16.0", + "id": "hashbrown 0.16.1", "target": "hashbrown" }, { @@ -33644,7 +33836,7 @@ "selects": {} }, "edition": "2021", - "version": "2.12.0" + "version": "2.13.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -33700,7 +33892,7 @@ "target": "number_prefix" }, { - "id": "portable-atomic 1.11.1", + "id": "portable-atomic 1.13.1", "target": "portable_atomic" }, { @@ -33811,14 +34003,14 @@ ], "license_file": "LICENSE" }, - "ipnet 2.11.0": { + "ipnet 2.12.0": { "name": "ipnet", - "version": "2.11.0", + "version": "2.12.0", "package_url": "https://github.com/krisprice/ipnet", "repository": { "Http": { - "url": "https://static.crates.io/crates/ipnet/2.11.0/download", - "sha256": "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" + "url": "https://static.crates.io/crates/ipnet/2.12.0/download", + "sha256": "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" } }, "targets": [ @@ -33848,7 +34040,7 @@ "selects": {} }, "edition": "2018", - "version": "2.11.0" + "version": "2.12.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -33857,14 +34049,14 @@ ], "license_file": "LICENSE-APACHE" }, - "iri-string 0.7.9": { + "iri-string 0.7.10": { "name": "iri-string", - "version": "0.7.9", + "version": "0.7.10", "package_url": "https://github.com/lo48576/iri-string", "repository": { "Http": { - "url": "https://static.crates.io/crates/iri-string/0.7.9/download", - "sha256": "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397" + "url": "https://static.crates.io/crates/iri-string/0.7.10/download", + "sha256": "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" } }, "targets": [ @@ -33895,7 +34087,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.9" + "version": "0.7.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -33938,7 +34130,7 @@ "selects": { "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -34284,14 +34476,14 @@ ], "license_file": "LICENSE-APACHE" }, - "itoa 1.0.15": { + "itoa 1.0.17": { "name": "itoa", - "version": "1.0.15", + "version": "1.0.17", "package_url": "https://github.com/dtolnay/itoa", "repository": { "Http": { - "url": "https://static.crates.io/crates/itoa/1.0.15/download", - "sha256": "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + "url": "https://static.crates.io/crates/itoa/1.0.17/download", + "sha256": "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" } }, "targets": [ @@ -34313,8 +34505,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.15" + "edition": "2021", + "version": "1.0.17" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -34323,14 +34515,14 @@ ], "license_file": "LICENSE-APACHE" }, - "jiff 0.2.16": { + "jiff 0.2.23": { "name": "jiff", - "version": "0.2.16", + "version": "0.2.23", "package_url": "https://github.com/BurntSushi/jiff", "repository": { "Http": { - "url": "https://static.crates.io/crates/jiff/0.2.16/download", - "sha256": "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35" + "url": "https://static.crates.io/crates/jiff/0.2.23/download", + "sha256": "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" } }, "targets": [ @@ -34364,11 +34556,11 @@ "selects": { "cfg(not(target_has_atomic = \"ptr\"))": [ { - "id": "portable-atomic 1.11.1", + "id": "portable-atomic 1.13.1", "target": "portable_atomic" }, { - "id": "portable-atomic-util 0.2.4", + "id": "portable-atomic-util 0.2.5", "target": "portable_atomic_util" } ] @@ -34380,13 +34572,13 @@ "selects": { "cfg(any())": [ { - "id": "jiff-static 0.2.16", + "id": "jiff-static 0.2.23", "target": "jiff_static" } ] } }, - "version": "0.2.16" + "version": "0.2.23" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -34395,14 +34587,14 @@ ], "license_file": "LICENSE-MIT" }, - "jiff-static 0.2.16": { + "jiff-static 0.2.23": { "name": "jiff-static", - "version": "0.2.16", + "version": "0.2.23", "package_url": "https://github.com/BurntSushi/jiff", "repository": { "Http": { - "url": "https://static.crates.io/crates/jiff-static/0.2.16/download", - "sha256": "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69" + "url": "https://static.crates.io/crates/jiff-static/0.2.23/download", + "sha256": "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" } }, "targets": [ @@ -34427,22 +34619,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.2.16" + "version": "0.2.23" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -34485,7 +34677,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -34507,14 +34699,14 @@ ], "license_file": "LICENSE-APACHE" }, - "js-sys 0.3.82": { + "js-sys 0.3.91": { "name": "js-sys", - "version": "0.3.82", + "version": "0.3.91", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/js-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/js-sys/0.3.82/download", - "sha256": "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" + "url": "https://static.crates.io/crates/js-sys/0.3.91/download", + "sha256": "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" } }, "targets": [ @@ -34539,7 +34731,8 @@ "crate_features": { "common": [ "default", - "std" + "std", + "unsafe-eval" ], "selects": {} }, @@ -34550,14 +34743,14 @@ "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], "selects": {} }, "edition": "2021", - "version": "0.3.82" + "version": "0.3.91" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -34598,7 +34791,7 @@ "deps": { "common": [ { - "id": "pest 2.8.3", + "id": "pest 2.8.6", "target": "pest" }, { @@ -34612,7 +34805,7 @@ "proc_macro_deps": { "common": [ { - "id": "pest_derive 2.8.3", + "id": "pest_derive 2.8.6", "target": "pest_derive" } ], @@ -34679,11 +34872,11 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { - "id": "simple_asn1 0.6.3", + "id": "simple_asn1 0.6.4", "target": "simple_asn1" } ], @@ -34696,7 +34889,7 @@ ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { @@ -34804,14 +34997,14 @@ ], "license_file": "LICENSE-APACHE" }, - "keccak 0.1.5": { + "keccak 0.1.6": { "name": "keccak", - "version": "0.1.5", + "version": "0.1.6", "package_url": "https://github.com/RustCrypto/sponges/tree/master/keccak", "repository": { "Http": { - "url": "https://static.crates.io/crates/keccak/0.1.5/download", - "sha256": "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" + "url": "https://static.crates.io/crates/keccak/0.1.6/download", + "sha256": "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653" } }, "targets": [ @@ -34845,7 +35038,7 @@ } }, "edition": "2018", - "version": "0.1.5" + "version": "0.1.6" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -34893,14 +35086,14 @@ "deps": { "common": [ { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "security-framework 3.5.1", + "id": "security-framework 3.7.0", "target": "security_framework" } ], @@ -34989,7 +35182,7 @@ "target": "bit_set" }, { - "id": "ena 0.14.3", + "id": "ena 0.14.4", "target": "ena" }, { @@ -35009,11 +35202,11 @@ "target": "pico_args" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { - "id": "regex-syntax 0.8.8", + "id": "regex-syntax 0.8.10", "target": "regex_syntax" }, { @@ -35112,31 +35305,31 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "regex-automata 0.4.13", + "id": "regex-automata 0.4.14", "target": "regex_automata" } ], "aarch64-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.13", + "id": "regex-automata 0.4.14", "target": "regex_automata" } ], "x86_64-pc-windows-msvc": [ { - "id": "regex-automata 0.4.13", + "id": "regex-automata 0.4.14", "target": "regex_automata" } ], "x86_64-unknown-linux-gnu": [ { - "id": "regex-automata 0.4.13", + "id": "regex-automata 0.4.14", "target": "regex_automata" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "regex-automata 0.4.13", + "id": "regex-automata 0.4.14", "target": "regex_automata" } ] @@ -35285,14 +35478,53 @@ ], "license_file": "LICENSE-APACHE" }, - "libc 0.2.177": { + "leb128fmt 0.1.0": { + "name": "leb128fmt", + "version": "0.1.0", + "package_url": "https://github.com/bluk/leb128fmt", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/leb128fmt/0.1.0/download", + "sha256": "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + } + }, + "targets": [ + { + "Library": { + "crate_name": "leb128fmt", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "leb128fmt", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "0.1.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "libc 0.2.183": { "name": "libc", - "version": "0.2.177", + "version": "0.2.183", "package_url": "https://github.com/rust-lang/libc", "repository": { "Http": { - "url": "https://static.crates.io/crates/libc/0.2.177/download", - "sha256": "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" + "url": "https://static.crates.io/crates/libc/0.2.183/download", + "sha256": "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" } }, "targets": [ @@ -35337,14 +35569,14 @@ "deps": { "common": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.177" + "version": "0.2.183" }, "build_script_attrs": { "compile_data_glob": [ @@ -35364,14 +35596,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libdbus-sys 0.2.6": { + "libdbus-sys 0.2.7": { "name": "libdbus-sys", - "version": "0.2.6", + "version": "0.2.7", "package_url": "https://github.com/diwic/dbus-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/libdbus-sys/0.2.6/download", - "sha256": "5cbe856efeb50e4681f010e9aaa2bf0a644e10139e54cde10fc83a307c23bd9f" + "url": "https://static.crates.io/crates/libdbus-sys/0.2.7/download", + "sha256": "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043" } }, "targets": [ @@ -35415,14 +35647,14 @@ "deps": { "common": [ { - "id": "libdbus-sys 0.2.6", + "id": "libdbus-sys 0.2.7", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.2.6" + "version": "0.2.7" }, "build_script_attrs": { "compile_data_glob": [ @@ -35452,14 +35684,14 @@ ], "license_file": "LICENSE-APACHE" }, - "libflate 2.2.0": { + "libflate 2.2.1": { "name": "libflate", - "version": "2.2.0", + "version": "2.2.1", "package_url": "https://github.com/sile/libflate", "repository": { "Http": { - "url": "https://static.crates.io/crates/libflate/2.2.0/download", - "sha256": "249fa21ba2b59e8cbd69e722f5b31e1b466db96c937ae3de23e8b99ead0d1383" + "url": "https://static.crates.io/crates/libflate/2.2.1/download", + "sha256": "e3248b8d211bd23a104a42d81b4fa8bb8ac4a3b75e7a43d85d2c9ccb6179cd74" } }, "targets": [ @@ -35514,7 +35746,7 @@ "selects": {} }, "edition": "2021", - "version": "2.2.0" + "version": "2.2.1" }, "license": "MIT", "license_ids": [ @@ -35564,7 +35796,7 @@ "target": "core2" }, { - "id": "hashbrown 0.16.0", + "id": "hashbrown 0.16.1", "target": "hashbrown" }, { @@ -35638,14 +35870,14 @@ ], "license_file": "LICENSE" }, - "libm 0.2.15": { + "libm 0.2.16": { "name": "libm", - "version": "0.2.15", + "version": "0.2.16", "package_url": "https://github.com/rust-lang/compiler-builtins", "repository": { "Http": { - "url": "https://static.crates.io/crates/libm/0.2.15/download", - "sha256": "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" + "url": "https://static.crates.io/crates/libm/0.2.16/download", + "sha256": "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" } }, "targets": [ @@ -35689,14 +35921,14 @@ "deps": { "common": [ { - "id": "libm 0.2.15", + "id": "libm 0.2.16", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.15" + "version": "0.2.16" }, "build_script_attrs": { "compile_data_glob": [ @@ -35715,14 +35947,14 @@ ], "license_file": "LICENSE.txt" }, - "libredox 0.1.10": { + "libredox 0.1.14": { "name": "libredox", - "version": "0.1.10", + "version": "0.1.14", "package_url": "https://gitlab.redox-os.org/redox-os/libredox.git", "repository": { "Http": { - "url": "https://static.crates.io/crates/libredox/0.1.10/download", - "sha256": "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" + "url": "https://static.crates.io/crates/libredox/0.1.14/download", + "sha256": "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a" } }, "targets": [ @@ -35747,22 +35979,14 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", - "target": "bitflags" - }, - { - "id": "libc 0.2.177", - "target": "libc" - }, - { - "id": "redox_syscall 0.5.18", + "id": "redox_syscall 0.7.3", "target": "syscall" } ], "selects": {} }, "edition": "2021", - "version": "0.1.10" + "version": "0.1.14" }, "license": "MIT", "license_ids": [ @@ -35821,14 +36045,14 @@ ], "license_file": "LICENSE-APACHE" }, - "linux-raw-sys 0.11.0": { + "linux-raw-sys 0.12.1": { "name": "linux-raw-sys", - "version": "0.11.0", + "version": "0.12.1", "package_url": "https://github.com/sunfishcode/linux-raw-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/linux-raw-sys/0.11.0/download", - "sha256": "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" + "url": "https://static.crates.io/crates/linux-raw-sys/0.12.1/download", + "sha256": "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" } }, "targets": [ @@ -35862,7 +36086,7 @@ "selects": {} }, "edition": "2021", - "version": "0.11.0" + "version": "0.12.1" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ @@ -35948,62 +36172,6 @@ ], "license_file": "LICENSE-APACHE" }, - "local-channel 0.1.5": { - "name": "local-channel", - "version": "0.1.5", - "package_url": "https://github.com/actix/actix-net", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/local-channel/0.1.5/download", - "sha256": "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" - } - }, - "targets": [ - { - "Library": { - "crate_name": "local_channel", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "local_channel", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "futures-core 0.3.31", - "target": "futures_core" - }, - { - "id": "futures-sink 0.3.31", - "target": "futures_sink" - }, - { - "id": "local-waker 0.1.4", - "target": "local_waker" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.1.5" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "local-waker 0.1.4": { "name": "local-waker", "version": "0.1.4", @@ -36098,14 +36266,14 @@ ], "license_file": "LICENSE-APACHE" }, - "log 0.4.28": { + "log 0.4.29": { "name": "log", - "version": "0.4.28", + "version": "0.4.29", "package_url": "https://github.com/rust-lang/log", "repository": { "Http": { - "url": "https://static.crates.io/crates/log/0.4.28/download", - "sha256": "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" + "url": "https://static.crates.io/crates/log/0.4.29/download", + "sha256": "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" } }, "targets": [ @@ -36134,7 +36302,7 @@ "selects": {} }, "edition": "2021", - "version": "0.4.28" + "version": "0.4.29" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -36157,15 +36325,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -36173,7 +36341,7 @@ "target": "pretty_env_logger" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -36181,19 +36349,19 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -36239,11 +36407,11 @@ "target": "axum" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -36251,7 +36419,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -36267,7 +36435,7 @@ "target": "slog_term" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -36296,15 +36464,15 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -36312,7 +36480,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -36328,11 +36496,11 @@ "target": "slog_term" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -36444,11 +36612,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -36456,7 +36624,7 @@ "target": "regex_syntax" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -36604,7 +36772,7 @@ "deps": { "common": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -36630,7 +36798,7 @@ "deps": { "common": [ { - "id": "cc 1.2.45", + "id": "cc 1.2.56", "target": "cc" }, { @@ -36778,14 +36946,14 @@ ], "license_file": "LICENSE" }, - "memchr 2.7.6": { + "memchr 2.8.0": { "name": "memchr", - "version": "2.7.6", + "version": "2.8.0", "package_url": "https://github.com/BurntSushi/memchr", "repository": { "Http": { - "url": "https://static.crates.io/crates/memchr/2.7.6/download", - "sha256": "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" + "url": "https://static.crates.io/crates/memchr/2.8.0/download", + "sha256": "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" } }, "targets": [ @@ -36816,7 +36984,7 @@ "selects": {} }, "edition": "2021", - "version": "2.7.6" + "version": "2.8.0" }, "license": "Unlicense OR MIT", "license_ids": [ @@ -36946,7 +37114,7 @@ "target": "byteorder" }, { - "id": "keccak 0.1.5", + "id": "keccak 0.1.6", "target": "keccak" }, { @@ -37133,11 +37301,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -37245,7 +37413,7 @@ "target": "adler2" }, { - "id": "simd-adler32 0.3.7", + "id": "simd-adler32 0.3.8", "target": "simd_adler32" } ], @@ -37262,14 +37430,14 @@ ], "license_file": "LICENSE" }, - "mio 1.1.0": { + "mio 1.1.1": { "name": "mio", - "version": "1.1.0", + "version": "1.1.1", "package_url": "https://github.com/tokio-rs/mio", "repository": { "Http": { - "url": "https://static.crates.io/crates/mio/1.1.0/download", - "sha256": "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" + "url": "https://static.crates.io/crates/mio/1.1.1/download", + "sha256": "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" } }, "targets": [ @@ -37304,20 +37472,20 @@ "deps": { "common": [ { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" } ], "selects": { "cfg(target_os = \"hermit\")": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(target_os = \"wasi\")": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -37327,7 +37495,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -37340,7 +37508,7 @@ } }, "edition": "2021", - "version": "1.1.0" + "version": "1.1.1" }, "license": "MIT", "license_ids": [ @@ -37392,11 +37560,11 @@ "target": "fragile" }, { - "id": "predicates 3.1.3", + "id": "predicates 3.1.4", "target": "predicates" }, { - "id": "predicates-tree 1.0.12", + "id": "predicates-tree 1.0.13", "target": "predicates_tree" } ], @@ -37473,15 +37641,15 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -37614,7 +37782,7 @@ "target": "base64" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -37626,15 +37794,15 @@ "target": "crossbeam_channel" }, { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "fs_err" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -37670,7 +37838,7 @@ "target": "prometheus" }, { - "id": "retry 2.1.0", + "id": "retry 2.2.0", "target": "retry" }, { @@ -37678,7 +37846,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -37694,11 +37862,11 @@ "target": "slog_term" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -37707,23 +37875,23 @@ "deps_dev": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { - "id": "assert_cmd 2.1.1", + "id": "assert_cmd 2.2.0", "target": "assert_cmd" }, { - "id": "flate2 1.1.5", + "id": "flate2 1.1.9", "target": "flate2" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" } ], @@ -37752,7 +37920,7 @@ "deps": { "common": [ { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -37764,11 +37932,11 @@ "target": "crossbeam_channel" }, { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "fs_err" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -37776,15 +37944,15 @@ "target": "humantime" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -37800,11 +37968,11 @@ "target": "slog_term" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -37846,7 +38014,7 @@ "deps": { "common": [ { - "id": "erased-serde 0.4.9", + "id": "erased-serde 0.4.10", "target": "erased_serde" }, { @@ -37858,7 +38026,7 @@ "target": "ic_types" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -37866,7 +38034,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" } ], @@ -37998,7 +38166,7 @@ "target": "cfg_if" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -38057,7 +38225,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { @@ -38198,7 +38366,7 @@ "target": "lazy_static" }, { - "id": "libm 0.2.15", + "id": "libm 0.2.16", "target": "libm" }, { @@ -38308,7 +38476,7 @@ "deps": { "common": [ { - "id": "libm 0.2.15", + "id": "libm 0.2.16", "target": "libm" }, { @@ -38367,14 +38535,14 @@ ], "license_file": "LICENSE-APACHE" }, - "num-conv 0.1.0": { + "num-conv 0.2.0": { "name": "num-conv", - "version": "0.1.0", + "version": "0.2.0", "package_url": "https://github.com/jhpratt/num-conv", "repository": { "Http": { - "url": "https://static.crates.io/crates/num-conv/0.1.0/download", - "sha256": "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + "url": "https://static.crates.io/crates/num-conv/0.2.0/download", + "sha256": "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" } }, "targets": [ @@ -38397,7 +38565,7 @@ "**" ], "edition": "2021", - "version": "0.1.0" + "version": "0.2.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -38566,7 +38734,7 @@ "deps": { "common": [ { - "id": "libm 0.2.15", + "id": "libm 0.2.16", "target": "libm" }, { @@ -38640,7 +38808,7 @@ "selects": { "cfg(not(windows))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -38707,14 +38875,14 @@ ], "license_file": null }, - "object 0.32.2": { + "object 0.37.3": { "name": "object", - "version": "0.32.2", + "version": "0.37.3", "package_url": "https://github.com/gimli-rs/object", "repository": { "Http": { - "url": "https://static.crates.io/crates/object/0.32.2/download", - "sha256": "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" + "url": "https://static.crates.io/crates/object/0.37.3/download", + "sha256": "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" } }, "targets": [ @@ -38729,6 +38897,18 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } } ], "library_target_name": "object", @@ -38754,14 +38934,29 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" + }, + { + "id": "object 0.37.3", + "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.32.2" + "version": "0.37.3" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -38809,7 +39004,7 @@ "target": "rand" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -38817,7 +39012,7 @@ "target": "serde" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -38881,7 +39076,7 @@ "deps": { "common": [ { - "id": "arc-swap 1.7.1", + "id": "arc-swap 1.8.2", "target": "arc_swap" }, { @@ -38897,7 +39092,7 @@ "target": "cfg_if" }, { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -38905,15 +39100,15 @@ "target": "either" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -38925,7 +39120,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { @@ -38937,7 +39132,7 @@ "target": "hyper_timeout" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { @@ -38953,7 +39148,7 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.10", + "id": "pin-project 1.1.11", "target": "pin_project" }, { @@ -38965,7 +39160,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -38981,23 +39176,23 @@ "target": "snafu" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { - "id": "tower-http 0.6.6", + "id": "tower-http 0.6.8", "target": "tower_http" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -39284,14 +39479,14 @@ ], "license_file": "LICENSE-APACHE" }, - "openssl-probe 0.1.6": { + "openssl-probe 0.2.1": { "name": "openssl-probe", - "version": "0.1.6", - "package_url": "https://github.com/alexcrichton/openssl-probe", + "version": "0.2.1", + "package_url": "https://github.com/rustls/openssl-probe", "repository": { "Http": { - "url": "https://static.crates.io/crates/openssl-probe/0.1.6/download", - "sha256": "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" + "url": "https://static.crates.io/crates/openssl-probe/0.2.1/download", + "sha256": "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" } }, "targets": [ @@ -39314,9 +39509,9 @@ "**" ], "edition": "2021", - "version": "0.1.6" + "version": "0.2.1" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -39371,30 +39566,30 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-sink 0.3.31", + "id": "futures-sink 0.3.32", "target": "futures_sink" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], "selects": { "cfg(all(target_arch = \"wasm32\", not(target_os = \"wasi\")))": [ { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" } ] @@ -39465,7 +39660,7 @@ "target": "prometheus" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -39572,15 +39767,15 @@ "deps": { "common": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { - "id": "futures-executor 0.3.31", + "id": "futures-executor 0.3.32", "target": "futures_executor" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -39600,15 +39795,15 @@ "target": "rand" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -40148,7 +40343,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -40344,7 +40539,7 @@ "deps": { "common": [ { - "id": "base64ct 1.8.0", + "id": "base64ct 1.8.3", "target": "base64ct" } ], @@ -40407,14 +40602,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest 2.8.3": { + "pest 2.8.6": { "name": "pest", - "version": "2.8.3", + "version": "2.8.6", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest/2.8.3/download", - "sha256": "989e7521a040efde50c3ab6bbadafbe15ab6dc042686926be59ac35d74607df4" + "url": "https://static.crates.io/crates/pest/2.8.6/download", + "sha256": "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662" } }, "targets": [ @@ -40447,7 +40642,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { @@ -40458,7 +40653,7 @@ "selects": {} }, "edition": "2021", - "version": "2.8.3" + "version": "2.8.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -40467,14 +40662,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_derive 2.8.3": { + "pest_derive 2.8.6": { "name": "pest_derive", - "version": "2.8.3", + "version": "2.8.6", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_derive/2.8.3/download", - "sha256": "187da9a3030dbafabbbfb20cb323b976dc7b7ce91fcd84f2f74d6e31d378e2de" + "url": "https://static.crates.io/crates/pest_derive/2.8.6/download", + "sha256": "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77" } }, "targets": [ @@ -40506,18 +40701,18 @@ "deps": { "common": [ { - "id": "pest 2.8.3", + "id": "pest 2.8.6", "target": "pest" }, { - "id": "pest_generator 2.8.3", + "id": "pest_generator 2.8.6", "target": "pest_generator" } ], "selects": {} }, "edition": "2021", - "version": "2.8.3" + "version": "2.8.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -40526,14 +40721,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_generator 2.8.3": { + "pest_generator 2.8.6": { "name": "pest_generator", - "version": "2.8.3", + "version": "2.8.6", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_generator/2.8.3/download", - "sha256": "49b401d98f5757ebe97a26085998d6c0eecec4995cad6ab7fc30ffdf4b052843" + "url": "https://static.crates.io/crates/pest_generator/2.8.6/download", + "sha256": "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f" } }, "targets": [ @@ -40564,30 +40759,30 @@ "deps": { "common": [ { - "id": "pest 2.8.3", + "id": "pest 2.8.6", "target": "pest" }, { - "id": "pest_meta 2.8.3", + "id": "pest_meta 2.8.6", "target": "pest_meta" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.8.3" + "version": "2.8.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -40596,14 +40791,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pest_meta 2.8.3": { + "pest_meta 2.8.6": { "name": "pest_meta", - "version": "2.8.3", + "version": "2.8.6", "package_url": "https://github.com/pest-parser/pest", "repository": { "Http": { - "url": "https://static.crates.io/crates/pest_meta/2.8.3/download", - "sha256": "72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a" + "url": "https://static.crates.io/crates/pest_meta/2.8.6/download", + "sha256": "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220" } }, "targets": [ @@ -40634,14 +40829,14 @@ "deps": { "common": [ { - "id": "pest 2.8.3", + "id": "pest 2.8.6", "target": "pest" } ], "selects": {} }, "edition": "2021", - "version": "2.8.3" + "version": "2.8.6" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -40686,7 +40881,7 @@ "target": "fixedbitset" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" } ], @@ -40738,7 +40933,7 @@ "target": "fixedbitset" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" } ], @@ -40857,7 +41052,7 @@ "deps": { "common": [ { - "id": "siphasher 1.0.1", + "id": "siphasher 1.0.2", "target": "siphasher" } ], @@ -40910,14 +41105,14 @@ ], "license_file": "LICENSE" }, - "pin-project 1.1.10": { + "pin-project 1.1.11": { "name": "pin-project", - "version": "1.1.10", + "version": "1.1.11", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project/1.1.10/download", - "sha256": "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" + "url": "https://static.crates.io/crates/pin-project/1.1.11/download", + "sha256": "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517" } }, "targets": [ @@ -40943,13 +41138,13 @@ "proc_macro_deps": { "common": [ { - "id": "pin-project-internal 1.1.10", + "id": "pin-project-internal 1.1.11", "target": "pin_project_internal" } ], "selects": {} }, - "version": "1.1.10" + "version": "1.1.11" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -40958,14 +41153,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-internal 1.1.10": { + "pin-project-internal 1.1.11": { "name": "pin-project-internal", - "version": "1.1.10", + "version": "1.1.11", "package_url": "https://github.com/taiki-e/pin-project", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-internal/1.1.10/download", - "sha256": "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" + "url": "https://static.crates.io/crates/pin-project-internal/1.1.11/download", + "sha256": "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6" } }, "targets": [ @@ -40990,22 +41185,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.1.10" + "version": "1.1.11" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -41014,14 +41209,14 @@ ], "license_file": "LICENSE-APACHE" }, - "pin-project-lite 0.2.16": { + "pin-project-lite 0.2.17": { "name": "pin-project-lite", - "version": "0.2.16", + "version": "0.2.17", "package_url": "https://github.com/taiki-e/pin-project-lite", "repository": { "Http": { - "url": "https://static.crates.io/crates/pin-project-lite/0.2.16/download", - "sha256": "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + "url": "https://static.crates.io/crates/pin-project-lite/0.2.17/download", + "sha256": "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" } }, "targets": [ @@ -41044,7 +41239,7 @@ "**" ], "edition": "2018", - "version": "0.2.16" + "version": "0.2.17" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -41257,14 +41452,53 @@ ], "license_file": "LICENSE-APACHE" }, - "portable-atomic 1.11.1": { + "plain 0.2.3": { + "name": "plain", + "version": "0.2.3", + "package_url": "https://github.com/randomites/plain", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/plain/0.2.3/download", + "sha256": "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" + } + }, + "targets": [ + { + "Library": { + "crate_name": "plain", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "plain", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2015", + "version": "0.2.3" + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "portable-atomic 1.13.1": { "name": "portable-atomic", - "version": "1.11.1", + "version": "1.13.1", "package_url": "https://github.com/taiki-e/portable-atomic", "repository": { "Http": { - "url": "https://static.crates.io/crates/portable-atomic/1.11.1/download", - "sha256": "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" + "url": "https://static.crates.io/crates/portable-atomic/1.13.1/download", + "sha256": "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" } }, "targets": [ @@ -41308,14 +41542,14 @@ "deps": { "common": [ { - "id": "portable-atomic 1.11.1", + "id": "portable-atomic 1.13.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.11.1" + "version": "1.13.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -41335,14 +41569,14 @@ ], "license_file": "LICENSE-APACHE" }, - "portable-atomic-util 0.2.4": { + "portable-atomic-util 0.2.5": { "name": "portable-atomic-util", - "version": "0.2.4", + "version": "0.2.5", "package_url": "https://github.com/taiki-e/portable-atomic", "repository": { "Http": { - "url": "https://static.crates.io/crates/portable-atomic-util/0.2.4/download", - "sha256": "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" + "url": "https://static.crates.io/crates/portable-atomic-util/0.2.5/download", + "sha256": "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5" } }, "targets": [ @@ -41379,18 +41613,18 @@ "deps": { "common": [ { - "id": "portable-atomic 1.11.1", + "id": "portable-atomic 1.13.1", "target": "portable_atomic" }, { - "id": "portable-atomic-util 0.2.4", + "id": "portable-atomic-util 0.2.5", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "0.2.4" + "version": "0.2.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -41541,7 +41775,7 @@ "deps": { "common": [ { - "id": "zerocopy 0.8.27", + "id": "zerocopy 0.8.42", "target": "zerocopy" } ], @@ -41595,14 +41829,14 @@ ], "license_file": "LICENSE" }, - "predicates 3.1.3": { + "predicates 3.1.4": { "name": "predicates", - "version": "3.1.3", + "version": "3.1.4", "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates/3.1.3/download", - "sha256": "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" + "url": "https://static.crates.io/crates/predicates/3.1.4/download", + "sha256": "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe" } }, "targets": [ @@ -41641,14 +41875,14 @@ "target": "difflib" }, { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.10", "target": "predicates_core" } ], "selects": {} }, "edition": "2021", - "version": "3.1.3" + "version": "3.1.4" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -41657,14 +41891,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-core 1.0.9": { + "predicates-core 1.0.10": { "name": "predicates-core", - "version": "1.0.9", - "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/core", + "version": "1.0.10", + "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-core/1.0.9/download", - "sha256": "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" + "url": "https://static.crates.io/crates/predicates-core/1.0.10/download", + "sha256": "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144" } }, "targets": [ @@ -41687,7 +41921,7 @@ "**" ], "edition": "2021", - "version": "1.0.9" + "version": "1.0.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -41696,14 +41930,14 @@ ], "license_file": "LICENSE-APACHE" }, - "predicates-tree 1.0.12": { + "predicates-tree 1.0.13": { "name": "predicates-tree", - "version": "1.0.12", - "package_url": "https://github.com/assert-rs/predicates-rs/tree/master/crates/tree", + "version": "1.0.13", + "package_url": "https://github.com/assert-rs/predicates-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/predicates-tree/1.0.12/download", - "sha256": "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" + "url": "https://static.crates.io/crates/predicates-tree/1.0.13/download", + "sha256": "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2" } }, "targets": [ @@ -41728,7 +41962,7 @@ "deps": { "common": [ { - "id": "predicates-core 1.0.9", + "id": "predicates-core 1.0.10", "target": "predicates_core" }, { @@ -41739,7 +41973,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.12" + "version": "1.0.13" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -41898,7 +42132,7 @@ "target": "env_logger" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" } ], @@ -41962,11 +42196,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -42126,14 +42360,14 @@ ], "license_file": null }, - "proc-macro-crate 3.4.0": { + "proc-macro-crate 3.5.0": { "name": "proc-macro-crate", - "version": "3.4.0", + "version": "3.5.0", "package_url": "https://github.com/bkchr/proc-macro-crate", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro-crate/3.4.0/download", - "sha256": "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" + "url": "https://static.crates.io/crates/proc-macro-crate/3.5.0/download", + "sha256": "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" } }, "targets": [ @@ -42158,14 +42392,14 @@ "deps": { "common": [ { - "id": "toml_edit 0.23.7", + "id": "toml_edit 0.25.4+spec-1.1.0", "target": "toml_edit" } ], "selects": {} }, "edition": "2021", - "version": "3.4.0" + "version": "3.5.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -42230,11 +42464,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -42331,11 +42565,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" } ], @@ -42403,11 +42637,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" } ], @@ -42462,15 +42696,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -42566,14 +42800,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro2 1.0.103": { + "proc-macro2 1.0.106": { "name": "proc-macro2", - "version": "1.0.103", + "version": "1.0.106", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.103/download", - "sha256": "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" + "url": "https://static.crates.io/crates/proc-macro2/1.0.106/download", + "sha256": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" } }, "targets": [ @@ -42617,18 +42851,18 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "build_script_build" }, { - "id": "unicode-ident 1.0.22", + "id": "unicode-ident 1.0.24", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "1.0.103" + "version": "1.0.106" }, "build_script_attrs": { "compile_data_glob": [ @@ -42692,7 +42926,7 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -42767,7 +43001,7 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -42853,11 +43087,11 @@ "target": "lazy_static" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { @@ -42873,7 +43107,7 @@ "target": "protobuf" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -42932,7 +43166,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -42940,7 +43174,7 @@ "target": "base64" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -42948,7 +43182,7 @@ "target": "crossbeam" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -42976,7 +43210,7 @@ "target": "ic_types" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -42984,7 +43218,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -43000,11 +43234,11 @@ "target": "slog_term" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -43061,7 +43295,7 @@ "target": "mime" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -43069,11 +43303,11 @@ "target": "serde" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -43129,7 +43363,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -43141,7 +43375,7 @@ "target": "once_cell" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" } ], @@ -43210,7 +43444,7 @@ "target": "bit_vec" }, { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -43234,7 +43468,7 @@ "target": "rand_xorshift" }, { - "id": "regex-syntax 0.8.8", + "id": "regex-syntax 0.8.10", "target": "regex_syntax" }, { @@ -43242,7 +43476,7 @@ "target": "rusty_fork" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" }, { @@ -43389,7 +43623,7 @@ "target": "itertools" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -43417,15 +43651,15 @@ "target": "prost_types" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" } ], @@ -43472,7 +43706,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -43480,15 +43714,15 @@ "target": "itertools" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -43692,14 +43926,14 @@ ], "license_file": "LICENSE.txt" }, - "psm 0.1.28": { + "psm 0.1.30": { "name": "psm", - "version": "0.1.28", + "version": "0.1.30", "package_url": "https://github.com/rust-lang/stacker/", "repository": { "Http": { - "url": "https://static.crates.io/crates/psm/0.1.28/download", - "sha256": "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01" + "url": "https://static.crates.io/crates/psm/0.1.30/download", + "sha256": "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8" } }, "targets": [ @@ -43736,14 +43970,14 @@ "deps": { "common": [ { - "id": "psm 0.1.28", + "id": "psm 0.1.30", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.1.28" + "version": "0.1.30" }, "build_script_attrs": { "compile_data_glob": [ @@ -43758,11 +43992,11 @@ "deps": { "common": [ { - "id": "ar_archive_writer 0.2.0", + "id": "ar_archive_writer 0.5.1", "target": "ar_archive_writer" }, { - "id": "cc 1.2.45", + "id": "cc 1.2.56", "target": "cc" } ], @@ -43855,11 +44089,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -43955,7 +44189,7 @@ "deps": { "common": [ { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" } ], @@ -44018,7 +44252,7 @@ "target": "bytes" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -44026,7 +44260,7 @@ "target": "build_script_build" }, { - "id": "quinn-proto 0.11.13", + "id": "quinn-proto 0.11.14", "target": "quinn_proto", "alias": "proto" }, @@ -44040,15 +44274,15 @@ "target": "rustc_hash" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -44061,7 +44295,7 @@ ], "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ { - "id": "socket2 0.6.1", + "id": "socket2 0.6.3", "target": "socket2" } ] @@ -44097,14 +44331,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quinn-proto 0.11.13": { + "quinn-proto 0.11.14": { "name": "quinn-proto", - "version": "0.11.13", + "version": "0.11.14", "package_url": "https://github.com/quinn-rs/quinn", "repository": { "Http": { - "url": "https://static.crates.io/crates/quinn-proto/0.11.13/download", - "sha256": "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" + "url": "https://static.crates.io/crates/quinn-proto/0.11.14/download", + "sha256": "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" } }, "targets": [ @@ -44145,11 +44379,11 @@ "target": "rustc_hash" }, { - "id": "slab 0.4.11", + "id": "slab 0.4.12", "target": "slab" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { @@ -44157,7 +44391,7 @@ "target": "tinyvec" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -44172,7 +44406,7 @@ "target": "ring" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types" }, { @@ -44183,7 +44417,7 @@ } }, "edition": "2021", - "version": "0.11.13" + "version": "0.11.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -44236,7 +44470,7 @@ "deps": { "common": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -44247,7 +44481,7 @@ "selects": { "cfg(not(all(target_family = \"wasm\", target_os = \"unknown\")))": [ { - "id": "socket2 0.6.1", + "id": "socket2 0.6.3", "target": "socket2" } ], @@ -44293,14 +44527,14 @@ ], "license_file": "LICENSE-APACHE" }, - "quote 1.0.42": { + "quote 1.0.45": { "name": "quote", - "version": "1.0.42", + "version": "1.0.45", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.42/download", - "sha256": "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" + "url": "https://static.crates.io/crates/quote/1.0.45/download", + "sha256": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" } }, "targets": [ @@ -44344,18 +44578,18 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "1.0.42" + "edition": "2021", + "version": "1.0.45" }, "build_script_attrs": { "compile_data_glob": [ @@ -44415,6 +44649,46 @@ ], "license_file": null }, + "r-efi 6.0.0": { + "name": "r-efi", + "version": "6.0.0", + "package_url": "https://github.com/r-efi/r-efi", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/r-efi/6.0.0/download", + "sha256": "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + } + }, + "targets": [ + { + "Library": { + "crate_name": "r_efi", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "r_efi", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2018", + "version": "6.0.0" + }, + "license": "MIT OR Apache-2.0 OR LGPL-2.1-or-later", + "license_ids": [ + "Apache-2.0", + "LGPL-2.1", + "MIT" + ], + "license_file": null + }, "radium 0.7.0": { "name": "radium", "version": "0.7.0", @@ -44541,25 +44815,25 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] @@ -44623,7 +44897,7 @@ "target": "rand_chacha" }, { - "id": "rand_core 0.9.3", + "id": "rand_core 0.9.5", "target": "rand_core" } ], @@ -44740,7 +45014,7 @@ "target": "ppv_lite86" }, { - "id": "rand_core 0.9.3", + "id": "rand_core 0.9.5", "target": "rand_core" } ], @@ -44796,7 +45070,7 @@ "deps": { "common": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" } ], @@ -44812,14 +45086,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rand_core 0.9.3": { + "rand_core 0.9.5": { "name": "rand_core", - "version": "0.9.3", + "version": "0.9.5", "package_url": "https://github.com/rust-random/rand", "repository": { "Http": { - "url": "https://static.crates.io/crates/rand_core/0.9.3/download", - "sha256": "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" + "url": "https://static.crates.io/crates/rand_core/0.9.5/download", + "sha256": "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" } }, "targets": [ @@ -44858,7 +45132,7 @@ "selects": {} }, "edition": "2021", - "version": "0.9.3" + "version": "0.9.5" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -45166,7 +45440,7 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" } ], @@ -45181,6 +45455,53 @@ ], "license_file": "LICENSE" }, + "redox_syscall 0.7.3": { + "name": "redox_syscall", + "version": "0.7.3", + "package_url": "https://gitlab.redox-os.org/redox-os/syscall", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/redox_syscall/0.7.3/download", + "sha256": "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16" + } + }, + "targets": [ + { + "Library": { + "crate_name": "syscall", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "syscall", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bitflags 2.11.0", + "target": "bitflags" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.7.3" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "redox_users 0.4.6": { "name": "redox_users", "version": "0.4.6", @@ -45213,11 +45534,11 @@ "deps": { "common": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" }, { - "id": "libredox 0.1.10", + "id": "libredox 0.1.14", "target": "libredox" }, { @@ -45268,15 +45589,15 @@ "deps": { "common": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" }, { - "id": "libredox 0.1.10", + "id": "libredox 0.1.14", "target": "libredox" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -45291,14 +45612,14 @@ ], "license_file": "LICENSE" }, - "regex 1.12.2": { + "regex 1.12.3": { "name": "regex", - "version": "1.12.2", + "version": "1.12.3", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex/1.12.2/download", - "sha256": "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" + "url": "https://static.crates.io/crates/regex/1.12.3/download", + "sha256": "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" } }, "targets": [ @@ -45349,22 +45670,22 @@ "target": "aho_corasick" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "regex-automata 0.4.13", + "id": "regex-automata 0.4.14", "target": "regex_automata" }, { - "id": "regex-syntax 0.8.8", + "id": "regex-syntax 0.8.10", "target": "regex_syntax" } ], "selects": {} }, "edition": "2021", - "version": "1.12.2" + "version": "1.12.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -45373,14 +45694,14 @@ ], "license_file": "LICENSE-APACHE" }, - "regex-automata 0.4.13": { + "regex-automata 0.4.14": { "name": "regex-automata", - "version": "0.4.13", + "version": "0.4.14", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-automata/0.4.13/download", - "sha256": "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" + "url": "https://static.crates.io/crates/regex-automata/0.4.14/download", + "sha256": "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" } }, "targets": [ @@ -45453,18 +45774,18 @@ "target": "aho_corasick" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, { - "id": "regex-syntax 0.8.8", + "id": "regex-syntax 0.8.10", "target": "regex_syntax" } ], "selects": {} }, "edition": "2021", - "version": "0.4.13" + "version": "0.4.14" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -45473,14 +45794,14 @@ ], "license_file": "LICENSE-APACHE" }, - "regex-lite 0.1.8": { + "regex-lite 0.1.9": { "name": "regex-lite", - "version": "0.1.8", + "version": "0.1.9", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-lite/0.1.8/download", - "sha256": "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da" + "url": "https://static.crates.io/crates/regex-lite/0.1.9/download", + "sha256": "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" } }, "targets": [ @@ -45511,7 +45832,7 @@ "selects": {} }, "edition": "2021", - "version": "0.1.8" + "version": "0.1.9" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -45573,14 +45894,14 @@ ], "license_file": "LICENSE-APACHE" }, - "regex-syntax 0.8.8": { + "regex-syntax 0.8.10": { "name": "regex-syntax", - "version": "0.8.8", + "version": "0.8.10", "package_url": "https://github.com/rust-lang/regex", "repository": { "Http": { - "url": "https://static.crates.io/crates/regex-syntax/0.8.8/download", - "sha256": "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" + "url": "https://static.crates.io/crates/regex-syntax/0.8.10/download", + "sha256": "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" } }, "targets": [ @@ -45618,7 +45939,7 @@ "selects": {} }, "edition": "2021", - "version": "0.8.8" + "version": "0.8.10" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -45702,7 +46023,7 @@ "target": "dfn_http_metrics" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -45742,7 +46063,7 @@ "target": "ic_management_canister_types_private" }, { - "id": "ic-metrics-encoder 1.1.1", + "id": "ic-metrics-encoder 1.1.2", "target": "ic_metrics_encoder" }, { @@ -45830,7 +46151,7 @@ "target": "idna" }, { - "id": "ipnet 2.11.0", + "id": "ipnet 2.12.0", "target": "ipnet" }, { @@ -45870,14 +46191,14 @@ "target": "serde" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], "selects": { "cfg(target_arch = \"wasm32\")": [ { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" } ] @@ -45989,14 +46310,14 @@ ], "license_file": "LICENSE" }, - "reqwest 0.12.24": { + "reqwest 0.12.28": { "name": "reqwest", - "version": "0.12.24", + "version": "0.12.28", "package_url": "https://github.com/seanmonstar/reqwest", "repository": { "Http": { - "url": "https://static.crates.io/crates/reqwest/0.12.24/download", - "sha256": "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" + "url": "https://static.crates.io/crates/reqwest/0.12.28/download", + "sha256": "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" } }, "targets": [ @@ -46043,15 +46364,15 @@ "target": "bytes" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -46059,7 +46380,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -46071,14 +46392,14 @@ "target": "sync_wrapper" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { @@ -46086,11 +46407,11 @@ "target": "hyper_rustls" }, { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types" }, { @@ -46098,17 +46419,17 @@ "target": "tokio_rustls" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], "aarch64-unknown-linux-gnu": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { @@ -46116,11 +46437,11 @@ "target": "hyper_rustls" }, { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types" }, { @@ -46128,11 +46449,11 @@ "target": "tokio_rustls" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], @@ -46146,15 +46467,15 @@ "target": "http_body_util" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -46162,19 +46483,19 @@ "target": "percent_encoding" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { - "id": "tower-http 0.6.6", + "id": "tower-http 0.6.8", "target": "tower_http" }, { @@ -46184,19 +46505,19 @@ ], "cfg(target_arch = \"wasm32\")": [ { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.55", + "id": "wasm-bindgen-futures 0.4.64", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.82", + "id": "web-sys 0.3.91", "target": "web_sys" } ], @@ -46214,7 +46535,7 @@ ], "x86_64-pc-windows-msvc": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { @@ -46222,11 +46543,11 @@ "target": "hyper_rustls" }, { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types" }, { @@ -46234,17 +46555,17 @@ "target": "tokio_rustls" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], "x86_64-unknown-linux-gnu": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { @@ -46252,11 +46573,11 @@ "target": "hyper_rustls" }, { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types" }, { @@ -46264,17 +46585,17 @@ "target": "tokio_rustls" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "futures-channel 0.3.31", + "id": "futures-channel 0.3.32", "target": "futures_channel" }, { @@ -46282,11 +46603,11 @@ "target": "hyper_rustls" }, { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types" }, { @@ -46294,18 +46615,18 @@ "target": "tokio_rustls" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "webpki-roots 1.0.4", + "id": "webpki-roots 1.0.6", "target": "webpki_roots" } ] } }, "edition": "2021", - "version": "0.12.24" + "version": "0.12.28" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -46314,14 +46635,14 @@ ], "license_file": "LICENSE-APACHE" }, - "retry 2.1.0": { + "retry 2.2.0": { "name": "retry", - "version": "2.1.0", + "version": "2.2.0", "package_url": "https://github.com/jimmycuadra/retry", "repository": { "Http": { - "url": "https://static.crates.io/crates/retry/2.1.0/download", - "sha256": "a1e211f878258887b3e65dd3c8ff9f530fe109f441a117ee0cdc27f341355032" + "url": "https://static.crates.io/crates/retry/2.2.0/download", + "sha256": "1cab9bd343c737660e523ee69f788018f3db686d537d2fd0f99c9f747c1bda4f" } }, "targets": [ @@ -46361,7 +46682,7 @@ "selects": {} }, "edition": "2018", - "version": "2.1.0" + "version": "2.2.0" }, "license": "MIT", "license_ids": [ @@ -46404,7 +46725,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -46428,7 +46749,7 @@ "target": "maplit" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "rust_decimal" }, { @@ -46442,7 +46763,7 @@ "proc_macro_deps": { "common": [ { - "id": "rust_decimal_macros 1.39.0", + "id": "rust_decimal_macros 1.40.0", "target": "rust_decimal_macros" } ], @@ -46570,7 +46891,7 @@ "target": "cfg_if" }, { - "id": "getrandom 0.2.16", + "id": "getrandom 0.2.17", "target": "getrandom" }, { @@ -46591,13 +46912,13 @@ ], "cfg(all(all(target_arch = \"aarch64\", target_endian = \"little\"), target_vendor = \"apple\", any(target_os = \"ios\", target_os = \"macos\", target_os = \"tvos\", target_os = \"visionos\", target_os = \"watchos\")))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(all(any(all(target_arch = \"aarch64\", target_endian = \"little\"), all(target_arch = \"arm\", target_endian = \"little\")), any(target_os = \"android\", target_os = \"linux\")))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] @@ -46619,7 +46940,7 @@ "deps": { "common": [ { - "id": "cc 1.2.45", + "id": "cc 1.2.56", "target": "cc" } ], @@ -46634,14 +46955,14 @@ ], "license_file": "LICENSE" }, - "rkyv 0.7.45": { + "rkyv 0.7.46": { "name": "rkyv", - "version": "0.7.45", + "version": "0.7.46", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv/0.7.45/download", - "sha256": "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" + "url": "https://static.crates.io/crates/rkyv/0.7.46/download", + "sha256": "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" } }, "targets": [ @@ -46682,7 +47003,7 @@ "target": "ptr_meta" }, { - "id": "rkyv 0.7.45", + "id": "rkyv 0.7.46", "target": "build_script_build" }, { @@ -46696,13 +47017,13 @@ "proc_macro_deps": { "common": [ { - "id": "rkyv_derive 0.7.45", + "id": "rkyv_derive 0.7.46", "target": "rkyv_derive" } ], "selects": {} }, - "version": "0.7.45" + "version": "0.7.46" }, "build_script_attrs": { "compile_data_glob": [ @@ -46721,14 +47042,14 @@ ], "license_file": "LICENSE" }, - "rkyv_derive 0.7.45": { + "rkyv_derive 0.7.46": { "name": "rkyv_derive", - "version": "0.7.45", + "version": "0.7.46", "package_url": "https://github.com/rkyv/rkyv", "repository": { "Http": { - "url": "https://static.crates.io/crates/rkyv_derive/0.7.45/download", - "sha256": "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" + "url": "https://static.crates.io/crates/rkyv_derive/0.7.46/download", + "sha256": "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" } }, "targets": [ @@ -46753,11 +47074,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -46768,7 +47089,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.45" + "version": "0.7.46" }, "license": "MIT", "license_ids": [ @@ -46854,7 +47175,7 @@ "target": "actix_web_prom" }, { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -46918,7 +47239,7 @@ "target": "serde_bytes" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -46926,19 +47247,19 @@ "target": "serde_with" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { - "id": "tower-http 0.6.6", + "id": "tower-http 0.6.8", "target": "tower_http" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -47053,14 +47374,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rust_decimal 1.39.0": { + "rust_decimal 1.40.0": { "name": "rust_decimal", - "version": "1.39.0", + "version": "1.40.0", "package_url": "https://github.com/paupino/rust-decimal", "repository": { "Http": { - "url": "https://static.crates.io/crates/rust_decimal/1.39.0/download", - "sha256": "35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282" + "url": "https://static.crates.io/crates/rust_decimal/1.40.0/download", + "sha256": "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0" } }, "targets": [ @@ -47113,7 +47434,7 @@ "target": "num_traits" }, { - "id": "rust_decimal 1.39.0", + "id": "rust_decimal 1.40.0", "target": "build_script_build" }, { @@ -47124,7 +47445,7 @@ "selects": {} }, "edition": "2021", - "version": "1.39.0" + "version": "1.40.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -47143,14 +47464,14 @@ ], "license_file": "LICENSE" }, - "rust_decimal_macros 1.39.0": { + "rust_decimal_macros 1.40.0": { "name": "rust_decimal_macros", - "version": "1.39.0", + "version": "1.40.0", "package_url": "https://github.com/paupino/rust-decimal", "repository": { "Http": { - "url": "https://static.crates.io/crates/rust_decimal_macros/1.39.0/download", - "sha256": "ae8c0cb48f413ebe24dc2d148788e0efbe09ba3e011d9277162f2eaf8e1069a3" + "url": "https://static.crates.io/crates/rust_decimal_macros/1.40.0/download", + "sha256": "74a5a6f027e892c7a035c6fddb50435a1fbf5a734ffc0c2a9fed4d0221440519" } }, "targets": [ @@ -47181,18 +47502,18 @@ "deps": { "common": [ { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.39.0" + "version": "1.40.0" }, "license": "MIT", "license_ids": [ @@ -47200,14 +47521,14 @@ ], "license_file": "LICENSE" }, - "rustc-demangle 0.1.26": { + "rustc-demangle 0.1.27": { "name": "rustc-demangle", - "version": "0.1.26", + "version": "0.1.27", "package_url": "https://github.com/rust-lang/rustc-demangle", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustc-demangle/0.1.26/download", - "sha256": "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" + "url": "https://static.crates.io/crates/rustc-demangle/0.1.27/download", + "sha256": "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d" } }, "targets": [ @@ -47230,7 +47551,7 @@ "**" ], "edition": "2015", - "version": "0.1.26" + "version": "0.1.27" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -47452,7 +47773,7 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -47468,7 +47789,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -47491,7 +47812,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -47513,7 +47834,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -47524,7 +47845,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -47558,14 +47879,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustix 1.1.2": { + "rustix 1.1.4": { "name": "rustix", - "version": "1.1.2", + "version": "1.1.4", "package_url": "https://github.com/bytecodealliance/rustix", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustix/1.1.2/download", - "sha256": "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" + "url": "https://static.crates.io/crates/rustix/1.1.4/download", + "sha256": "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" } }, "targets": [ @@ -47628,11 +47949,11 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { - "id": "rustix 1.1.2", + "id": "rustix 1.1.4", "target": "build_script_build" } ], @@ -47644,19 +47965,19 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], - "cfg(all(any(target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ + "cfg(all(any(target_os = \"linux\", target_os = \"android\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [ { - "id": "linux-raw-sys 0.11.0", + "id": "linux-raw-sys 0.12.1", "target": "linux_raw_sys" } ], "cfg(all(not(rustix_use_libc), not(miri), target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\"))))": [ { - "id": "linux-raw-sys 0.11.0", + "id": "linux-raw-sys 0.12.1", "target": "linux_raw_sys" } ], @@ -47667,7 +47988,7 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -47689,14 +48010,14 @@ "alias": "libc_errno" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] } }, "edition": "2021", - "version": "1.1.2" + "version": "1.1.4" }, "build_script_attrs": { "compile_data_glob": [ @@ -47716,14 +48037,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls 0.23.35": { + "rustls 0.23.37": { "name": "rustls", - "version": "0.23.35", + "version": "0.23.37", "package_url": "https://github.com/rustls/rustls", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls/0.23.35/download", - "sha256": "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" + "url": "https://static.crates.io/crates/rustls/0.23.37/download", + "sha256": "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" } }, "targets": [ @@ -47779,7 +48100,7 @@ "target": "brotli_decompressor" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -47791,16 +48112,16 @@ "target": "ring" }, { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "build_script_build" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" }, { - "id": "rustls-webpki 0.103.8", + "id": "rustls-webpki 0.103.9", "target": "webpki" }, { @@ -47815,7 +48136,7 @@ "selects": {} }, "edition": "2021", - "version": "0.23.35" + "version": "0.23.37" }, "build_script_attrs": { "compile_data_glob": [ @@ -47845,14 +48166,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls-native-certs 0.8.2": { + "rustls-native-certs 0.8.3": { "name": "rustls-native-certs", - "version": "0.8.2", + "version": "0.8.3", "package_url": "https://github.com/rustls/rustls-native-certs", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-native-certs/0.8.2/download", - "sha256": "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923" + "url": "https://static.crates.io/crates/rustls-native-certs/0.8.3/download", + "sha256": "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" } }, "targets": [ @@ -47877,7 +48198,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -47885,26 +48206,26 @@ "selects": { "cfg(all(unix, not(target_os = \"macos\")))": [ { - "id": "openssl-probe 0.1.6", + "id": "openssl-probe 0.2.1", "target": "openssl_probe" } ], "cfg(target_os = \"macos\")": [ { - "id": "security-framework 3.5.1", + "id": "security-framework 3.7.0", "target": "security_framework" } ], "cfg(windows)": [ { - "id": "schannel 0.1.28", + "id": "schannel 0.1.29", "target": "schannel" } ] } }, "edition": "2021", - "version": "0.8.2" + "version": "0.8.3" }, "license": "Apache-2.0 OR ISC OR MIT", "license_ids": [ @@ -47914,14 +48235,14 @@ ], "license_file": "LICENSE" }, - "rustls-pki-types 1.13.0": { + "rustls-pki-types 1.14.0": { "name": "rustls-pki-types", - "version": "1.13.0", + "version": "1.14.0", "package_url": "https://github.com/rustls/pki-types", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-pki-types/1.13.0/download", - "sha256": "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" + "url": "https://static.crates.io/crates/rustls-pki-types/1.14.0/download", + "sha256": "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" } }, "targets": [ @@ -47961,7 +48282,7 @@ "selects": {} }, "edition": "2021", - "version": "1.13.0" + "version": "1.14.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -47970,14 +48291,14 @@ ], "license_file": "LICENSE-APACHE" }, - "rustls-webpki 0.103.8": { + "rustls-webpki 0.103.9": { "name": "rustls-webpki", - "version": "0.103.8", + "version": "0.103.9", "package_url": "https://github.com/rustls/webpki", "repository": { "Http": { - "url": "https://static.crates.io/crates/rustls-webpki/0.103.8/download", - "sha256": "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" + "url": "https://static.crates.io/crates/rustls-webpki/0.103.9/download", + "sha256": "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" } }, "targets": [ @@ -48014,7 +48335,7 @@ "target": "ring" }, { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" }, @@ -48026,7 +48347,7 @@ "selects": {} }, "edition": "2021", - "version": "0.103.8" + "version": "0.103.9" }, "license": "ISC", "license_ids": [ @@ -48152,7 +48473,7 @@ "target": "quick_error" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" }, { @@ -48172,14 +48493,14 @@ ], "license_file": "LICENSE-APACHE" }, - "ryu 1.0.20": { + "ryu 1.0.23": { "name": "ryu", - "version": "1.0.20", + "version": "1.0.23", "package_url": "https://github.com/dtolnay/ryu", "repository": { "Http": { - "url": "https://static.crates.io/crates/ryu/1.0.20/download", - "sha256": "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" + "url": "https://static.crates.io/crates/ryu/1.0.23/download", + "sha256": "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" } }, "targets": [ @@ -48201,8 +48522,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.20" + "edition": "2021", + "version": "1.0.23" }, "license": "Apache-2.0 OR BSL-1.0", "license_ids": [ @@ -48261,14 +48582,14 @@ ], "license_file": "LICENSE-MIT" }, - "schannel 0.1.28": { + "schannel 0.1.29": { "name": "schannel", - "version": "0.1.28", + "version": "0.1.29", "package_url": "https://github.com/steffengy/schannel-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/schannel/0.1.28/download", - "sha256": "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" + "url": "https://static.crates.io/crates/schannel/0.1.29/download", + "sha256": "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" } }, "targets": [ @@ -48300,7 +48621,7 @@ "selects": {} }, "edition": "2018", - "version": "0.1.28" + "version": "0.1.29" }, "license": "MIT", "license_ids": [ @@ -48647,7 +48968,7 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -48659,11 +48980,11 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "security-framework-sys 2.15.0", + "id": "security-framework-sys 2.17.0", "target": "security_framework_sys" } ], @@ -48679,14 +49000,14 @@ ], "license_file": "LICENSE-APACHE" }, - "security-framework 3.5.1": { + "security-framework 3.7.0": { "name": "security-framework", - "version": "3.5.1", + "version": "3.7.0", "package_url": "https://github.com/kornelski/rust-security-framework", "repository": { "Http": { - "url": "https://static.crates.io/crates/security-framework/3.5.1/download", - "sha256": "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" + "url": "https://static.crates.io/crates/security-framework/3.7.0/download", + "sha256": "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" } }, "targets": [ @@ -48710,15 +49031,17 @@ ], "crate_features": { "common": [ - "OSX_10_12", - "default" + "OSX_10_14", + "alpn", + "default", + "session-tickets" ], "selects": {} }, "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -48730,18 +49053,18 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "security-framework-sys 2.15.0", + "id": "security-framework-sys 2.17.0", "target": "security_framework_sys" } ], "selects": {} }, - "edition": "2021", - "version": "3.5.1" + "edition": "2024", + "version": "3.7.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48750,14 +49073,14 @@ ], "license_file": "LICENSE-APACHE" }, - "security-framework-sys 2.15.0": { + "security-framework-sys 2.17.0": { "name": "security-framework-sys", - "version": "2.15.0", + "version": "2.17.0", "package_url": "https://github.com/kornelski/rust-security-framework", "repository": { "Http": { - "url": "https://static.crates.io/crates/security-framework-sys/2.15.0/download", - "sha256": "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" + "url": "https://static.crates.io/crates/security-framework-sys/2.17.0/download", + "sha256": "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" } }, "targets": [ @@ -48779,15 +49102,6 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "OSX_10_10", - "OSX_10_11", - "OSX_10_12", - "OSX_10_9" - ], - "selects": {} - }, "deps": { "common": [ { @@ -48795,14 +49109,14 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "selects": {} }, "edition": "2021", - "version": "2.15.0" + "version": "2.17.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -48843,7 +49157,7 @@ "deps": { "common": [ { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" } ], @@ -48921,7 +49235,7 @@ "deps": { "common": [ { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { @@ -48929,7 +49243,7 @@ "target": "indicatif" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -48937,11 +49251,11 @@ "target": "quick_xml" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { @@ -48957,7 +49271,7 @@ "target": "semver" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -48965,7 +49279,7 @@ "target": "tar" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" }, { @@ -49441,15 +49755,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -49465,14 +49779,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_json 1.0.145": { + "serde_json 1.0.149": { "name": "serde_json", - "version": "1.0.145", + "version": "1.0.149", "package_url": "https://github.com/serde-rs/json", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_json/1.0.145/download", - "sha256": "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" + "url": "https://static.crates.io/crates/serde_json/1.0.149/download", + "sha256": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" } }, "targets": [ @@ -49535,28 +49849,28 @@ "deps": { "common": [ { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "memchr 2.7.6", + "id": "memchr 2.8.0", "target": "memchr" }, - { - "id": "ryu 1.0.20", - "target": "ryu" - }, { "id": "serde_core 1.0.228", "target": "serde_core" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "build_script_build" + }, + { + "id": "zmij 1.0.21", + "target": "zmij" } ], "selects": { @@ -49569,7 +49883,7 @@ } }, "edition": "2021", - "version": "1.0.145" + "version": "1.0.149" }, "build_script_attrs": { "compile_data_glob": [ @@ -49621,7 +49935,7 @@ "deps": { "common": [ { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { @@ -49680,15 +49994,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -49740,11 +50054,11 @@ "target": "form_urlencoded" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "ryu 1.0.20", + "id": "ryu 1.0.23", "target": "ryu" }, { @@ -49865,11 +50179,11 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -49921,15 +50235,15 @@ "deps": { "common": [ { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "ryu 1.0.20", + "id": "ryu 1.0.23", "target": "ryu" }, { @@ -49999,7 +50313,7 @@ "target": "dashmap" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -50007,7 +50321,7 @@ "target": "lazy_static" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -50073,15 +50387,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -50123,7 +50437,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -50135,11 +50449,11 @@ "target": "crossbeam_channel" }, { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "fs_err" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -50199,7 +50513,7 @@ "target": "prometheus" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -50207,7 +50521,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -50215,19 +50529,19 @@ "target": "slog" }, { - "id": "tempfile 3.23.0", + "id": "tempfile 3.27.0", "target": "tempfile" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -50310,7 +50624,7 @@ "target": "bitfield" }, { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -50330,7 +50644,7 @@ "target": "lazy_static" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -50354,7 +50668,7 @@ "target": "static_assertions" }, { - "id": "uuid 1.18.1", + "id": "uuid 1.22.0", "target": "uuid" }, { @@ -50590,14 +50904,14 @@ ], "license_file": "LICENSE-APACHE" }, - "shell-words 1.1.0": { + "shell-words 1.1.1": { "name": "shell-words", - "version": "1.1.0", + "version": "1.1.1", "package_url": "https://github.com/tmiasko/shell-words", "repository": { "Http": { - "url": "https://static.crates.io/crates/shell-words/1.1.0/download", - "sha256": "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" + "url": "https://static.crates.io/crates/shell-words/1.1.1/download", + "sha256": "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77" } }, "targets": [ @@ -50627,7 +50941,7 @@ "selects": {} }, "edition": "2015", - "version": "1.1.0" + "version": "1.1.1" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -50682,14 +50996,14 @@ ], "license_file": "LICENSE-APACHE" }, - "signal-hook-registry 1.4.6": { + "signal-hook-registry 1.4.8": { "name": "signal-hook-registry", - "version": "1.4.6", + "version": "1.4.8", "package_url": "https://github.com/vorner/signal-hook", "repository": { "Http": { - "url": "https://static.crates.io/crates/signal-hook-registry/1.4.6/download", - "sha256": "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" + "url": "https://static.crates.io/crates/signal-hook-registry/1.4.8/download", + "sha256": "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" } }, "targets": [ @@ -50714,16 +51028,20 @@ "deps": { "common": [ { - "id": "libc 0.2.177", + "id": "errno 0.3.14", + "target": "errno" + }, + { + "id": "libc 0.2.183", "target": "libc" } ], "selects": {} }, "edition": "2015", - "version": "1.4.6" + "version": "1.4.8" }, - "license": "Apache-2.0/MIT", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -50791,14 +51109,14 @@ ], "license_file": "LICENSE-APACHE" }, - "simd-adler32 0.3.7": { + "simd-adler32 0.3.8": { "name": "simd-adler32", - "version": "0.3.7", + "version": "0.3.8", "package_url": "https://github.com/mcountryman/simd-adler32", "repository": { "Http": { - "url": "https://static.crates.io/crates/simd-adler32/0.3.7/download", - "sha256": "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" + "url": "https://static.crates.io/crates/simd-adler32/0.3.8/download", + "sha256": "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" } }, "targets": [ @@ -50821,7 +51139,7 @@ "**" ], "edition": "2018", - "version": "0.3.7" + "version": "0.3.8" }, "license": "MIT", "license_ids": [ @@ -50868,14 +51186,14 @@ ], "license_file": "LICENSE-Apache" }, - "simple_asn1 0.6.3": { + "simple_asn1 0.6.4": { "name": "simple_asn1", - "version": "0.6.3", + "version": "0.6.4", "package_url": "https://github.com/acw/simple_asn1", "repository": { "Http": { - "url": "https://static.crates.io/crates/simple_asn1/0.6.3/download", - "sha256": "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" + "url": "https://static.crates.io/crates/simple_asn1/0.6.4/download", + "sha256": "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d" } }, "targets": [ @@ -50908,18 +51226,18 @@ "target": "num_traits" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" } ], "selects": {} }, "edition": "2018", - "version": "0.6.3" + "version": "0.6.4" }, "license": "ISC", "license_ids": [ @@ -50927,14 +51245,14 @@ ], "license_file": "LICENSE" }, - "siphasher 1.0.1": { + "siphasher 1.0.2": { "name": "siphasher", - "version": "1.0.1", + "version": "1.0.2", "package_url": "https://github.com/jedisct1/rust-siphash", "repository": { "Http": { - "url": "https://static.crates.io/crates/siphasher/1.0.1/download", - "sha256": "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + "url": "https://static.crates.io/crates/siphasher/1.0.2/download", + "sha256": "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" } }, "targets": [ @@ -50964,7 +51282,7 @@ "selects": {} }, "edition": "2018", - "version": "1.0.1" + "version": "1.0.2" }, "license": "MIT/Apache-2.0", "license_ids": [ @@ -50973,14 +51291,14 @@ ], "license_file": null }, - "slab 0.4.11": { + "slab 0.4.12": { "name": "slab", - "version": "0.4.11", + "version": "0.4.12", "package_url": "https://github.com/tokio-rs/slab", "repository": { "Http": { - "url": "https://static.crates.io/crates/slab/0.4.11/download", - "sha256": "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" + "url": "https://static.crates.io/crates/slab/0.4.12/download", + "sha256": "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" } }, "targets": [ @@ -51010,7 +51328,7 @@ "selects": {} }, "edition": "2018", - "version": "0.4.11" + "version": "0.4.12" }, "license": "MIT", "license_ids": [ @@ -51032,7 +51350,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -51040,7 +51358,7 @@ "target": "candid" }, { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -51048,15 +51366,15 @@ "target": "dotenv" }, { - "id": "env_logger 0.11.8", + "id": "env_logger 0.11.9", "target": "env_logger" }, { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "fs_err" }, { - "id": "futures 0.3.31", + "id": "futures 0.3.32", "target": "futures" }, { @@ -51088,11 +51406,11 @@ "target": "lazy_static" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "regex 1.12.2", + "id": "regex 1.12.3", "target": "regex" }, { @@ -51100,11 +51418,11 @@ "target": "registry_canister" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { - "id": "retry 2.1.0", + "id": "retry 2.2.0", "target": "retry" }, { @@ -51112,7 +51430,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -51120,7 +51438,7 @@ "target": "serde_yaml" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -51378,7 +51696,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -51386,7 +51704,7 @@ "target": "slog" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" } ], @@ -51403,14 +51721,14 @@ ], "license_file": "LICENSE-APACHE" }, - "slog-scope 4.4.0": { + "slog-scope 4.4.1": { "name": "slog-scope", - "version": "4.4.0", + "version": "4.4.1", "package_url": "https://github.com/slog-rs/scope", "repository": { "Http": { - "url": "https://static.crates.io/crates/slog-scope/4.4.0/download", - "sha256": "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" + "url": "https://static.crates.io/crates/slog-scope/4.4.1/download", + "sha256": "42b76cf645c92e7850d5a1c9205ebf2864bd32c0ab3e978e6daad51fedf7ef54" } }, "targets": [ @@ -51435,7 +51753,7 @@ "deps": { "common": [ { - "id": "arc-swap 1.7.1", + "id": "arc-swap 1.8.2", "target": "arc_swap" }, { @@ -51450,9 +51768,9 @@ "selects": {} }, "edition": "2015", - "version": "4.4.0" + "version": "4.4.1" }, - "license": "MPL-2.0/MIT/Apache-2.0", + "license": "MPL-2.0 OR MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT", @@ -51492,7 +51810,7 @@ "deps": { "common": [ { - "id": "chrono 0.4.42", + "id": "chrono 0.4.44", "target": "chrono" }, { @@ -51504,7 +51822,7 @@ "target": "slog" }, { - "id": "term 1.2.0", + "id": "term 1.2.1", "target": "term" }, { @@ -51512,7 +51830,7 @@ "target": "thread_local" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" } ], @@ -51529,14 +51847,14 @@ ], "license_file": "LICENSE-APACHE" }, - "slotmap 1.0.7": { + "slotmap 1.1.1": { "name": "slotmap", - "version": "1.0.7", + "version": "1.1.1", "package_url": "https://github.com/orlp/slotmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/slotmap/1.0.7/download", - "sha256": "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" + "url": "https://static.crates.io/crates/slotmap/1.1.1/download", + "sha256": "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038" } }, "targets": [ @@ -51580,14 +51898,14 @@ "deps": { "common": [ { - "id": "slotmap 1.0.7", + "id": "slotmap 1.1.1", "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.0.7" + "version": "1.1.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -51777,15 +52095,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -51815,7 +52133,7 @@ "deps": { "common": [ { - "id": "clap 4.5.51", + "id": "clap 4.5.60", "target": "clap" }, { @@ -51827,11 +52145,11 @@ "target": "crossbeam_channel" }, { - "id": "fs-err 3.1.3", + "id": "fs-err 3.3.0", "target": "fs_err" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -51839,11 +52157,11 @@ "target": "humantime" }, { - "id": "reqwest 0.12.24", + "id": "reqwest 0.12.28", "target": "reqwest" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" }, { @@ -51859,11 +52177,11 @@ "target": "slog_term" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "url 2.5.7", + "id": "url 2.5.8", "target": "url" } ], @@ -51981,7 +52299,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -52003,14 +52321,14 @@ ], "license_file": "LICENSE-APACHE" }, - "socket2 0.6.1": { + "socket2 0.6.3": { "name": "socket2", - "version": "0.6.1", + "version": "0.6.3", "package_url": "https://github.com/rust-lang/socket2", "repository": { "Http": { - "url": "https://static.crates.io/crates/socket2/0.6.1/download", - "sha256": "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" + "url": "https://static.crates.io/crates/socket2/0.6.3/download", + "sha256": "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" } }, "targets": [ @@ -52041,22 +52359,22 @@ "deps": { "common": [], "selects": { - "cfg(unix)": [ + "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], "cfg(windows)": [ { - "id": "windows-sys 0.60.2", + "id": "windows-sys 0.61.2", "target": "windows_sys" } ] } }, "edition": "2021", - "version": "0.6.1" + "version": "0.6.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -52109,14 +52427,14 @@ ], "license_file": "LICENSE" }, - "spinners 4.1.1": { + "spinners 4.2.0": { "name": "spinners", - "version": "4.1.1", + "version": "4.2.0", "package_url": "https://github.com/fgribreau/spinners", "repository": { "Http": { - "url": "https://static.crates.io/crates/spinners/4.1.1/download", - "sha256": "a0ef947f358b9c238923f764c72a4a9d42f2d637c46e059dbd319d6e7cfb4f82" + "url": "https://static.crates.io/crates/spinners/4.2.0/download", + "sha256": "071af1a9d34b78b8db3ca4424b0ea4d87052d607dbe96287aebaccd596cabc86" } }, "targets": [ @@ -52156,7 +52474,7 @@ "selects": {} }, "edition": "2021", - "version": "4.1.1" + "version": "4.2.0" }, "license": "MIT", "license_ids": [ @@ -52266,14 +52584,14 @@ ], "license_file": "LICENSE-APACHE" }, - "stacker 0.1.22": { + "stacker 0.1.23": { "name": "stacker", - "version": "0.1.22", + "version": "0.1.23", "package_url": "https://github.com/rust-lang/stacker", "repository": { "Http": { - "url": "https://static.crates.io/crates/stacker/0.1.22/download", - "sha256": "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59" + "url": "https://static.crates.io/crates/stacker/0.1.23/download", + "sha256": "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013" } }, "targets": [ @@ -52314,15 +52632,15 @@ "target": "cfg_if" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "psm 0.1.28", + "id": "psm 0.1.30", "target": "psm" }, { - "id": "stacker 0.1.22", + "id": "stacker 0.1.23", "target": "build_script_build" } ], @@ -52342,7 +52660,7 @@ } }, "edition": "2021", - "version": "0.1.22" + "version": "0.1.23" }, "build_script_attrs": { "compile_data_glob": [ @@ -52357,7 +52675,7 @@ "deps": { "common": [ { - "id": "cc 1.2.45", + "id": "cc 1.2.56", "target": "cc" } ], @@ -52450,11 +52768,11 @@ "target": "cfg_if" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], @@ -52792,11 +53110,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -52860,15 +53178,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -53035,11 +53353,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -53047,7 +53365,7 @@ "target": "build_script_build" }, { - "id": "unicode-ident 1.0.22", + "id": "unicode-ident 1.0.24", "target": "unicode_ident" } ], @@ -53074,14 +53392,14 @@ ], "license_file": "LICENSE-APACHE" }, - "syn 2.0.110": { + "syn 2.0.117": { "name": "syn", - "version": "2.0.110", + "version": "2.0.117", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.110/download", - "sha256": "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" + "url": "https://static.crates.io/crates/syn/2.0.117/download", + "sha256": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" } }, "targets": [ @@ -53122,22 +53440,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "unicode-ident 1.0.22", + "id": "unicode-ident 1.0.24", "target": "unicode_ident" } ], "selects": {} }, "edition": "2021", - "version": "2.0.110" + "version": "2.0.117" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53185,7 +53503,7 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" } ], @@ -53239,15 +53557,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -53262,14 +53580,14 @@ ], "license_file": "LICENSE" }, - "system-configuration 0.6.1": { + "system-configuration 0.7.0": { "name": "system-configuration", - "version": "0.6.1", + "version": "0.7.0", "package_url": "https://github.com/mullvad/system-configuration-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/system-configuration/0.6.1/download", - "sha256": "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" + "url": "https://static.crates.io/crates/system-configuration/0.7.0/download", + "sha256": "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" } }, "targets": [ @@ -53294,7 +53612,7 @@ "deps": { "common": [ { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -53309,7 +53627,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.1" + "version": "0.7.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53366,7 +53684,7 @@ "target": "core_foundation_sys" }, { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { @@ -53560,15 +53878,15 @@ "target": "proc_macro_error2" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -53753,7 +54071,7 @@ "deps": { "common": [ { - "id": "filetime 0.2.26", + "id": "filetime 0.2.27", "target": "filetime" } ], @@ -53772,7 +54090,7 @@ ], "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ], @@ -53800,14 +54118,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tempfile 3.23.0": { + "tempfile 3.27.0": { "name": "tempfile", - "version": "3.23.0", + "version": "3.27.0", "package_url": "https://github.com/Stebalien/tempfile", "repository": { "Http": { - "url": "https://static.crates.io/crates/tempfile/3.23.0/download", - "sha256": "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" + "url": "https://static.crates.io/crates/tempfile/3.27.0/download", + "sha256": "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" } }, "targets": [ @@ -53850,19 +54168,19 @@ "selects": { "aarch64-apple-darwin": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "aarch64-unknown-linux-gnu": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "cfg(any(unix, target_os = \"wasi\"))": [ { - "id": "rustix 1.1.2", + "id": "rustix 1.1.4", "target": "rustix" } ], @@ -53874,32 +54192,32 @@ ], "wasm32-wasip1": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "x86_64-pc-windows-msvc": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "x86_64-unknown-linux-gnu": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ] } }, "edition": "2021", - "version": "3.23.0" + "version": "3.27.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -53980,14 +54298,14 @@ ], "license_file": "LICENSE-APACHE" }, - "term 1.2.0": { + "term 1.2.1": { "name": "term", - "version": "1.2.0", + "version": "1.2.1", "package_url": "https://github.com/Stebalien/term", "repository": { "Http": { - "url": "https://static.crates.io/crates/term/1.2.0/download", - "sha256": "2111ef44dae28680ae9752bb89409e7310ca33a8c621ebe7b106cf5c928b3ac0" + "url": "https://static.crates.io/crates/term/1.2.1/download", + "sha256": "d8c27177b12a6399ffc08b98f76f7c9a1f4fe9fc967c784c5a071fa8d93cf7e1" } }, "targets": [ @@ -54027,7 +54345,7 @@ } }, "edition": "2021", - "version": "1.2.0" + "version": "1.2.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -54120,7 +54438,7 @@ "selects": { "cfg(unix)": [ { - "id": "rustix 1.1.2", + "id": "rustix 1.1.4", "target": "rustix" } ], @@ -54260,14 +54578,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror 2.0.17": { + "thiserror 2.0.18": { "name": "thiserror", - "version": "2.0.17", + "version": "2.0.18", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror/2.0.17/download", - "sha256": "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" + "url": "https://static.crates.io/crates/thiserror/2.0.18/download", + "sha256": "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" } }, "targets": [ @@ -54311,7 +54629,7 @@ "deps": { "common": [ { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "build_script_build" } ], @@ -54321,13 +54639,13 @@ "proc_macro_deps": { "common": [ { - "id": "thiserror-impl 2.0.17", + "id": "thiserror-impl 2.0.18", "target": "thiserror_impl" } ], "selects": {} }, - "version": "2.0.17" + "version": "2.0.18" }, "build_script_attrs": { "compile_data_glob": [ @@ -54379,15 +54697,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -54403,14 +54721,14 @@ ], "license_file": "LICENSE-APACHE" }, - "thiserror-impl 2.0.17": { + "thiserror-impl 2.0.18": { "name": "thiserror-impl", - "version": "2.0.17", + "version": "2.0.18", "package_url": "https://github.com/dtolnay/thiserror", "repository": { "Http": { - "url": "https://static.crates.io/crates/thiserror-impl/2.0.17/download", - "sha256": "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" + "url": "https://static.crates.io/crates/thiserror-impl/2.0.18/download", + "sha256": "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" } }, "targets": [ @@ -54435,22 +54753,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.0.17" + "version": "2.0.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -54546,14 +54864,14 @@ ], "license_file": "LICENSE-APACHE" }, - "time 0.3.44": { + "time 0.3.47": { "name": "time", - "version": "0.3.44", + "version": "0.3.47", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time/0.3.44/download", - "sha256": "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" + "url": "https://static.crates.io/crates/time/0.3.47/download", + "sha256": "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" } }, "targets": [ @@ -54590,15 +54908,15 @@ "deps": { "common": [ { - "id": "deranged 0.5.5", + "id": "deranged 0.5.8", "target": "deranged" }, { - "id": "itoa 1.0.15", + "id": "itoa 1.0.17", "target": "itoa" }, { - "id": "num-conv 0.1.0", + "id": "num-conv 0.2.0", "target": "num_conv" }, { @@ -54606,27 +54924,27 @@ "target": "powerfmt" }, { - "id": "serde 1.0.228", - "target": "serde" + "id": "serde_core 1.0.228", + "target": "serde_core" }, { - "id": "time-core 0.1.6", + "id": "time-core 0.1.8", "target": "time_core" } ], "selects": {} }, - "edition": "2021", + "edition": "2024", "proc_macro_deps": { "common": [ { - "id": "time-macros 0.2.24", + "id": "time-macros 0.2.27", "target": "time_macros" } ], "selects": {} }, - "version": "0.3.44" + "version": "0.3.47" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -54635,14 +54953,14 @@ ], "license_file": "LICENSE-Apache" }, - "time-core 0.1.6": { + "time-core 0.1.8": { "name": "time-core", - "version": "0.1.6", + "version": "0.1.8", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time-core/0.1.6/download", - "sha256": "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" + "url": "https://static.crates.io/crates/time-core/0.1.8/download", + "sha256": "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" } }, "targets": [ @@ -54664,8 +54982,8 @@ "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.1.6" + "edition": "2024", + "version": "0.1.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -54674,14 +54992,14 @@ ], "license_file": "LICENSE-Apache" }, - "time-macros 0.2.24": { + "time-macros 0.2.27": { "name": "time-macros", - "version": "0.2.24", + "version": "0.2.27", "package_url": "https://github.com/time-rs/time", "repository": { "Http": { - "url": "https://static.crates.io/crates/time-macros/0.2.24/download", - "sha256": "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" + "url": "https://static.crates.io/crates/time-macros/0.2.27/download", + "sha256": "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" } }, "targets": [ @@ -54714,18 +55032,18 @@ "deps": { "common": [ { - "id": "num-conv 0.1.0", + "id": "num-conv 0.2.0", "target": "num_conv" }, { - "id": "time-core 0.1.6", + "id": "time-core 0.1.8", "target": "time_core" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.24" + "edition": "2024", + "version": "0.2.27" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55037,15 +55355,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -55061,14 +55379,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio 1.48.0": { + "tokio 1.50.0": { "name": "tokio", - "version": "1.48.0", + "version": "1.50.0", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio/1.48.0/download", - "sha256": "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" + "url": "https://static.crates.io/crates/tokio/1.50.0/download", + "sha256": "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" } }, "targets": [ @@ -55126,7 +55444,7 @@ "target": "bytes" }, { - "id": "mio 1.1.0", + "id": "mio 1.1.1", "target": "mio" }, { @@ -55134,42 +55452,42 @@ "target": "parking_lot" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "signal-hook-registry 1.4.6", + "id": "signal-hook-registry 1.4.8", "target": "signal_hook_registry" }, { - "id": "socket2 0.6.1", + "id": "socket2 0.6.3", "target": "socket2" } ], "aarch64-unknown-linux-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "signal-hook-registry 1.4.6", + "id": "signal-hook-registry 1.4.8", "target": "signal_hook_registry" }, { - "id": "socket2 0.6.1", + "id": "socket2 0.6.3", "target": "socket2" } ], "x86_64-pc-windows-msvc": [ { - "id": "socket2 0.6.1", + "id": "socket2 0.6.3", "target": "socket2" }, { @@ -55179,29 +55497,29 @@ ], "x86_64-unknown-linux-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "signal-hook-registry 1.4.6", + "id": "signal-hook-registry 1.4.8", "target": "signal_hook_registry" }, { - "id": "socket2 0.6.1", + "id": "socket2 0.6.3", "target": "socket2" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" }, { - "id": "signal-hook-registry 1.4.6", + "id": "signal-hook-registry 1.4.8", "target": "signal_hook_registry" }, { - "id": "socket2 0.6.1", + "id": "socket2 0.6.3", "target": "socket2" } ] @@ -55211,13 +55529,13 @@ "proc_macro_deps": { "common": [ { - "id": "tokio-macros 2.6.0", + "id": "tokio-macros 2.6.1", "target": "tokio_macros" } ], "selects": {} }, - "version": "1.48.0" + "version": "1.50.0" }, "license": "MIT", "license_ids": [ @@ -55225,14 +55543,14 @@ ], "license_file": "LICENSE" }, - "tokio-macros 2.6.0": { + "tokio-macros 2.6.1": { "name": "tokio-macros", - "version": "2.6.0", + "version": "2.6.1", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-macros/2.6.0/download", - "sha256": "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" + "url": "https://static.crates.io/crates/tokio-macros/2.6.1/download", + "sha256": "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" } }, "targets": [ @@ -55257,22 +55575,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "2.6.0" + "version": "2.6.1" }, "license": "MIT", "license_ids": [ @@ -55280,14 +55598,14 @@ ], "license_file": "LICENSE" }, - "tokio-metrics 0.4.5": { + "tokio-metrics 0.4.9": { "name": "tokio-metrics", - "version": "0.4.5", + "version": "0.4.9", "package_url": "https://github.com/tokio-rs/tokio-metrics", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-metrics/0.4.5/download", - "sha256": "a01bbf7db0b3f5eee8930a119fe99bfa1438de1095fe3d26b25e652a5933ef3f" + "url": "https://static.crates.io/crates/tokio-metrics/0.4.9/download", + "sha256": "0e0410015c6db7b67b9c9ab2a3af4d74a942d637ff248d0d055073750deac6f9" } }, "targets": [ @@ -55320,26 +55638,26 @@ "deps": { "common": [ { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-stream 0.1.17", + "id": "tokio-stream 0.1.18", "target": "tokio_stream" } ], "selects": {} }, "edition": "2021", - "version": "0.4.5" + "version": "0.4.9" }, "license": "MIT", "license_ids": [ @@ -55402,11 +55720,11 @@ "deps": { "common": [ { - "id": "rustls 0.23.35", + "id": "rustls 0.23.37", "target": "rustls" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], @@ -55422,14 +55740,14 @@ ], "license_file": "LICENSE-APACHE" }, - "tokio-stream 0.1.17": { + "tokio-stream 0.1.18": { "name": "tokio-stream", - "version": "0.1.17", + "version": "0.1.18", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-stream/0.1.17/download", - "sha256": "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" + "url": "https://static.crates.io/crates/tokio-stream/0.1.18/download", + "sha256": "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" } }, "targets": [ @@ -55462,22 +55780,22 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.1.17" + "version": "0.1.18" }, "license": "MIT", "license_ids": [ @@ -55526,15 +55844,15 @@ "deps": { "common": [ { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { @@ -55553,14 +55871,14 @@ ], "license_file": "LICENSE" }, - "tokio-util 0.7.17": { + "tokio-util 0.7.18": { "name": "tokio-util", - "version": "0.7.17", + "version": "0.7.18", "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/tokio-util/0.7.17/download", - "sha256": "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" + "url": "https://static.crates.io/crates/tokio-util/0.7.18/download", + "sha256": "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" } }, "targets": [ @@ -55597,26 +55915,26 @@ "target": "bytes" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-sink 0.3.31", + "id": "futures-sink 0.3.32", "target": "futures_sink" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" } ], "selects": {} }, "edition": "2021", - "version": "0.7.17" + "version": "0.7.18" }, "license": "MIT", "license_ids": [ @@ -55624,14 +55942,14 @@ ], "license_file": "LICENSE" }, - "toml_datetime 0.7.3": { + "toml_datetime 1.0.0+spec-1.1.0": { "name": "toml_datetime", - "version": "0.7.3", + "version": "1.0.0+spec-1.1.0", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_datetime/0.7.3/download", - "sha256": "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" + "url": "https://static.crates.io/crates/toml_datetime/1.0.0+spec-1.1.0/download", + "sha256": "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" } }, "targets": [ @@ -55662,7 +55980,7 @@ "selects": {} }, "edition": "2021", - "version": "0.7.3" + "version": "1.0.0+spec-1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55671,14 +55989,14 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_edit 0.23.7": { + "toml_edit 0.25.4+spec-1.1.0": { "name": "toml_edit", - "version": "0.23.7", + "version": "0.25.4+spec-1.1.0", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.23.7/download", - "sha256": "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" + "url": "https://static.crates.io/crates/toml_edit/0.25.4+spec-1.1.0/download", + "sha256": "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2" } }, "targets": [ @@ -55709,26 +56027,26 @@ "deps": { "common": [ { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { - "id": "toml_datetime 0.7.3", + "id": "toml_datetime 1.0.0+spec-1.1.0", "target": "toml_datetime" }, { - "id": "toml_parser 1.0.4", + "id": "toml_parser 1.0.9+spec-1.1.0", "target": "toml_parser" }, { - "id": "winnow 0.7.13", + "id": "winnow 0.7.15", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "0.23.7" + "version": "0.25.4+spec-1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55737,14 +56055,14 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_parser 1.0.4": { + "toml_parser 1.0.9+spec-1.1.0": { "name": "toml_parser", - "version": "1.0.4", + "version": "1.0.9+spec-1.1.0", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_parser/1.0.4/download", - "sha256": "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" + "url": "https://static.crates.io/crates/toml_parser/1.0.9+spec-1.1.0/download", + "sha256": "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" } }, "targets": [ @@ -55777,14 +56095,14 @@ "deps": { "common": [ { - "id": "winnow 0.7.13", + "id": "winnow 0.7.15", "target": "winnow" } ], "selects": {} }, "edition": "2021", - "version": "1.0.4" + "version": "1.0.9+spec-1.1.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -55853,11 +56171,11 @@ "target": "bytes" }, { - "id": "h2 0.4.12", + "id": "h2 0.4.13", "target": "h2" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -55869,7 +56187,7 @@ "target": "http_body_util" }, { - "id": "hyper 1.7.0", + "id": "hyper 1.8.1", "target": "hyper" }, { @@ -55877,7 +56195,7 @@ "target": "hyper_timeout" }, { - "id": "hyper-util 0.1.17", + "id": "hyper-util 0.1.20", "target": "hyper_util" }, { @@ -55885,7 +56203,7 @@ "target": "percent_encoding" }, { - "id": "pin-project 1.1.10", + "id": "pin-project 1.1.11", "target": "pin_project" }, { @@ -55897,11 +56215,11 @@ "target": "socket2" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-stream 0.1.17", + "id": "tokio-stream 0.1.18", "target": "tokio_stream" }, { @@ -55917,7 +56235,7 @@ "target": "tower_service" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -55986,7 +56304,7 @@ "target": "prettyplease" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { @@ -55998,11 +56316,11 @@ "target": "prost_types" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -56073,11 +56391,11 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -56085,11 +56403,11 @@ "target": "indexmap" }, { - "id": "pin-project 1.1.10", + "id": "pin-project 1.1.11", "target": "pin_project" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { @@ -56097,15 +56415,15 @@ "target": "rand" }, { - "id": "slab 0.4.11", + "id": "slab 0.4.12", "target": "slab" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { @@ -56117,7 +56435,7 @@ "target": "tower_service" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], @@ -56132,14 +56450,14 @@ ], "license_file": "LICENSE" }, - "tower 0.5.2": { + "tower 0.5.3": { "name": "tower", - "version": "0.5.2", + "version": "0.5.3", "package_url": "https://github.com/tower-rs/tower", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower/0.5.2/download", - "sha256": "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" + "url": "https://static.crates.io/crates/tower/0.5.3/download", + "sha256": "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" } }, "targets": [ @@ -56163,7 +56481,6 @@ ], "crate_features": { "common": [ - "__common", "balance", "buffer", "discover", @@ -56198,11 +56515,11 @@ "deps": { "common": [ { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { @@ -56210,15 +56527,15 @@ "target": "hdrhistogram" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "slab 0.4.11", + "id": "slab 0.4.12", "target": "slab" }, { @@ -56226,11 +56543,11 @@ "target": "sync_wrapper" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { @@ -56242,14 +56559,14 @@ "target": "tower_service" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" } ], "selects": {} }, "edition": "2018", - "version": "0.5.2" + "version": "0.5.3" }, "license": "MIT", "license_ids": [ @@ -56257,14 +56574,14 @@ ], "license_file": "LICENSE" }, - "tower-http 0.6.6": { + "tower-http 0.6.8": { "name": "tower-http", - "version": "0.6.6", + "version": "0.6.8", "package_url": "https://github.com/tower-rs/tower-http", "repository": { "Http": { - "url": "https://static.crates.io/crates/tower-http/0.6.6/download", - "sha256": "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" + "url": "https://static.crates.io/crates/tower-http/0.6.8/download", + "sha256": "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" } }, "targets": [ @@ -56317,11 +56634,11 @@ "deps": { "common": [ { - "id": "async-compression 0.4.33", + "id": "async-compression 0.4.41", "target": "async_compression" }, { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -56329,15 +56646,15 @@ "target": "bytes" }, { - "id": "futures-core 0.3.31", + "id": "futures-core 0.3.32", "target": "futures_core" }, { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -56349,23 +56666,23 @@ "target": "http_body_util" }, { - "id": "iri-string 0.7.9", + "id": "iri-string 0.7.10", "target": "iri_string" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tokio 1.48.0", + "id": "tokio 1.50.0", "target": "tokio" }, { - "id": "tokio-util 0.7.17", + "id": "tokio-util 0.7.18", "target": "tokio_util" }, { - "id": "tower 0.5.2", + "id": "tower 0.5.3", "target": "tower" }, { @@ -56377,18 +56694,18 @@ "target": "tower_service" }, { - "id": "tracing 0.1.41", + "id": "tracing 0.1.44", "target": "tracing" }, { - "id": "uuid 1.18.1", + "id": "uuid 1.22.0", "target": "uuid" } ], "selects": {} }, "edition": "2018", - "version": "0.6.6" + "version": "0.6.8" }, "license": "MIT", "license_ids": [ @@ -56472,14 +56789,14 @@ ], "license_file": "LICENSE" }, - "tracing 0.1.41": { + "tracing 0.1.44": { "name": "tracing", - "version": "0.1.41", + "version": "0.1.44", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing/0.1.41/download", - "sha256": "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" + "url": "https://static.crates.io/crates/tracing/0.1.44/download", + "sha256": "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" } }, "targets": [ @@ -56514,15 +56831,15 @@ "deps": { "common": [ { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "pin-project-lite 0.2.16", + "id": "pin-project-lite 0.2.17", "target": "pin_project_lite" }, { - "id": "tracing-core 0.1.34", + "id": "tracing-core 0.1.36", "target": "tracing_core" } ], @@ -56532,13 +56849,13 @@ "proc_macro_deps": { "common": [ { - "id": "tracing-attributes 0.1.30", + "id": "tracing-attributes 0.1.31", "target": "tracing_attributes" } ], "selects": {} }, - "version": "0.1.41" + "version": "0.1.44" }, "license": "MIT", "license_ids": [ @@ -56546,14 +56863,14 @@ ], "license_file": "LICENSE" }, - "tracing-attributes 0.1.30": { + "tracing-attributes 0.1.31": { "name": "tracing-attributes", - "version": "0.1.30", + "version": "0.1.31", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing-attributes/0.1.30/download", - "sha256": "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" + "url": "https://static.crates.io/crates/tracing-attributes/0.1.31/download", + "sha256": "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" } }, "targets": [ @@ -56578,22 +56895,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2018", - "version": "0.1.30" + "version": "0.1.31" }, "license": "MIT", "license_ids": [ @@ -56601,14 +56918,14 @@ ], "license_file": "LICENSE" }, - "tracing-core 0.1.34": { + "tracing-core 0.1.36": { "name": "tracing-core", - "version": "0.1.34", + "version": "0.1.36", "package_url": "https://github.com/tokio-rs/tracing", "repository": { "Http": { - "url": "https://static.crates.io/crates/tracing-core/0.1.34/download", - "sha256": "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" + "url": "https://static.crates.io/crates/tracing-core/0.1.36/download", + "sha256": "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" } }, "targets": [ @@ -56647,7 +56964,7 @@ "selects": {} }, "edition": "2018", - "version": "0.1.34" + "version": "0.1.36" }, "license": "MIT", "license_ids": [ @@ -56766,7 +57083,7 @@ "target": "serde" }, { - "id": "serde_json 1.0.145", + "id": "serde_json 1.0.149", "target": "serde_json" } ], @@ -56865,11 +57182,11 @@ "target": "bytes" }, { - "id": "data-encoding 2.9.0", + "id": "data-encoding 2.10.0", "target": "data_encoding" }, { - "id": "http 1.3.1", + "id": "http 1.4.0", "target": "http" }, { @@ -56877,7 +57194,7 @@ "target": "httparse" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -56889,7 +57206,7 @@ "target": "sha1" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" }, { @@ -57180,14 +57497,14 @@ ], "license_file": "LICENSE-APACHE" }, - "unicode-ident 1.0.22": { + "unicode-ident 1.0.24": { "name": "unicode-ident", - "version": "1.0.22", + "version": "1.0.24", "package_url": "https://github.com/dtolnay/unicode-ident", "repository": { "Http": { - "url": "https://static.crates.io/crates/unicode-ident/1.0.22/download", - "sha256": "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" + "url": "https://static.crates.io/crates/unicode-ident/1.0.24/download", + "sha256": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" } }, "targets": [ @@ -57209,8 +57526,8 @@ "compile_data_glob": [ "**" ], - "edition": "2018", - "version": "1.0.22" + "edition": "2021", + "version": "1.0.24" }, "license": "(MIT OR Apache-2.0) AND Unicode-3.0", "license_ids": [ @@ -57472,14 +57789,14 @@ ], "license_file": "LICENSE.txt" }, - "url 2.5.7": { + "url 2.5.8": { "name": "url", - "version": "2.5.7", + "version": "2.5.8", "package_url": "https://github.com/servo/rust-url", "repository": { "Http": { - "url": "https://static.crates.io/crates/url/2.5.7/download", - "sha256": "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" + "url": "https://static.crates.io/crates/url/2.5.8/download", + "sha256": "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" } }, "targets": [ @@ -57531,7 +57848,16 @@ "selects": {} }, "edition": "2018", - "version": "2.5.7" + "proc_macro_deps": { + "common": [ + { + "id": "serde_derive 1.0.228", + "target": "serde_derive" + } + ], + "selects": {} + }, + "version": "2.5.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -57617,14 +57943,14 @@ ], "license_file": "LICENSE-APACHE" }, - "utf8-width 0.1.7": { + "utf8-width 0.1.8": { "name": "utf8-width", - "version": "0.1.7", + "version": "0.1.8", "package_url": "https://github.com/magiclen/utf8-width", "repository": { "Http": { - "url": "https://static.crates.io/crates/utf8-width/0.1.7/download", - "sha256": "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" + "url": "https://static.crates.io/crates/utf8-width/0.1.8/download", + "sha256": "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" } }, "targets": [ @@ -57647,7 +57973,7 @@ "**" ], "edition": "2021", - "version": "0.1.7" + "version": "0.1.8" }, "license": "MIT", "license_ids": [ @@ -57739,14 +58065,14 @@ ], "license_file": "LICENSE-APACHE" }, - "uuid 1.18.1": { + "uuid 1.22.0": { "name": "uuid", - "version": "1.18.1", + "version": "1.22.0", "package_url": "https://github.com/uuid-rs/uuid", "repository": { "Http": { - "url": "https://static.crates.io/crates/uuid/1.18.1/download", - "sha256": "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" + "url": "https://static.crates.io/crates/uuid/1.22.0/download", + "sha256": "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" } }, "targets": [ @@ -57781,51 +58107,51 @@ "deps": { "common": [ { - "id": "serde 1.0.228", - "target": "serde" + "id": "serde_core 1.0.228", + "target": "serde_core" } ], "selects": { "aarch64-apple-darwin": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "aarch64-unknown-linux-gnu": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "wasm32-wasip1": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "x86_64-pc-windows-msvc": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "x86_64-unknown-linux-gnu": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ], "x86_64-unknown-nixos-gnu": [ { - "id": "getrandom 0.3.4", + "id": "getrandom 0.4.2", "target": "getrandom" } ] } }, - "edition": "2018", - "version": "1.18.1" + "edition": "2021", + "version": "1.22.0" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -57907,7 +58233,7 @@ "selects": { "cfg(unix)": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] @@ -58010,7 +58336,7 @@ "deps": { "common": [ { - "id": "anyhow 1.0.100", + "id": "anyhow 1.0.102", "target": "anyhow" }, { @@ -58018,7 +58344,7 @@ "target": "gimli" }, { - "id": "id-arena 2.2.1", + "id": "id-arena 2.3.0", "target": "id_arena" }, { @@ -58026,7 +58352,7 @@ "target": "leb128" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { @@ -58095,11 +58421,11 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { @@ -58212,14 +58538,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasip2 1.0.1+wasi-0.2.4": { + "wasip2 1.0.2+wasi-0.2.9": { "name": "wasip2", - "version": "1.0.1+wasi-0.2.4", + "version": "1.0.2+wasi-0.2.9", "package_url": "https://github.com/bytecodealliance/wasi-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasip2/1.0.1+wasi-0.2.4/download", - "sha256": "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" + "url": "https://static.crates.io/crates/wasip2/1.0.2+wasi-0.2.9/download", + "sha256": "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" } }, "targets": [ @@ -58244,14 +58570,62 @@ "deps": { "common": [ { - "id": "wit-bindgen 0.46.0", + "id": "wit-bindgen 0.51.0", + "target": "wit_bindgen" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.2+wasi-0.2.9" + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, + "wasip3 0.4.0+wasi-0.3.0-rc-2026-01-06": { + "name": "wasip3", + "version": "0.4.0+wasi-0.3.0-rc-2026-01-06", + "package_url": "https://github.com/bytecodealliance/wasi-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasip3/0.4.0+wasi-0.3.0-rc-2026-01-06/download", + "sha256": "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasip3", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasip3", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "wit-bindgen 0.51.0", "target": "wit_bindgen" } ], "selects": {} }, "edition": "2021", - "version": "1.0.1+wasi-0.2.4" + "version": "0.4.0+wasi-0.3.0-rc-2026-01-06" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ @@ -58260,14 +58634,14 @@ ], "license_file": null }, - "wasm-bindgen 0.2.105": { + "wasm-bindgen 0.2.114": { "name": "wasm-bindgen", - "version": "0.2.105", + "version": "0.2.114", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen/0.2.105/download", - "sha256": "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" + "url": "https://static.crates.io/crates/wasm-bindgen/0.2.114/download", + "sha256": "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" } }, "targets": [ @@ -58319,11 +58693,11 @@ "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "build_script_build" }, { - "id": "wasm-bindgen-shared 0.2.105", + "id": "wasm-bindgen-shared 0.2.114", "target": "wasm_bindgen_shared" } ], @@ -58333,13 +58707,13 @@ "proc_macro_deps": { "common": [ { - "id": "wasm-bindgen-macro 0.2.105", + "id": "wasm-bindgen-macro 0.2.114", "target": "wasm_bindgen_macro" } ], "selects": {} }, - "version": "0.2.105" + "version": "0.2.114" }, "build_script_attrs": { "compile_data_glob": [ @@ -58354,7 +58728,7 @@ "link_deps": { "common": [ { - "id": "wasm-bindgen-shared 0.2.105", + "id": "wasm-bindgen-shared 0.2.114", "target": "wasm_bindgen_shared" } ], @@ -58378,14 +58752,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-futures 0.4.55": { + "wasm-bindgen-futures 0.4.64": { "name": "wasm-bindgen-futures", - "version": "0.4.55", + "version": "0.4.64", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/futures", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.55/download", - "sha256": "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0" + "url": "https://static.crates.io/crates/wasm-bindgen-futures/0.4.64/download", + "sha256": "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" } }, "targets": [ @@ -58410,6 +58784,7 @@ "crate_features": { "common": [ "default", + "futures-util", "std" ], "selects": {} @@ -58421,7 +58796,11 @@ "target": "cfg_if" }, { - "id": "js-sys 0.3.82", + "id": "futures-util 0.3.32", + "target": "futures_util" + }, + { + "id": "js-sys 0.3.91", "target": "js_sys" }, { @@ -58429,21 +58808,21 @@ "target": "once_cell" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], "selects": { "cfg(target_feature = \"atomics\")": [ { - "id": "web-sys 0.3.82", + "id": "web-sys 0.3.91", "target": "web_sys" } ] } }, "edition": "2021", - "version": "0.4.55" + "version": "0.4.64" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -58452,14 +58831,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro 0.2.105": { + "wasm-bindgen-macro 0.2.114": { "name": "wasm-bindgen-macro", - "version": "0.2.105", + "version": "0.2.114", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.105/download", - "sha256": "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" + "url": "https://static.crates.io/crates/wasm-bindgen-macro/0.2.114/download", + "sha256": "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" } }, "targets": [ @@ -58484,18 +58863,18 @@ "deps": { "common": [ { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "wasm-bindgen-macro-support 0.2.105", + "id": "wasm-bindgen-macro-support 0.2.114", "target": "wasm_bindgen_macro_support" } ], "selects": {} }, "edition": "2021", - "version": "0.2.105" + "version": "0.2.114" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -58504,14 +58883,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-macro-support 0.2.105": { + "wasm-bindgen-macro-support 0.2.114": { "name": "wasm-bindgen-macro-support", - "version": "0.2.105", + "version": "0.2.114", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/macro-support", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.105/download", - "sha256": "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" + "url": "https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.114/download", + "sha256": "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" } }, "targets": [ @@ -58536,30 +58915,30 @@ "deps": { "common": [ { - "id": "bumpalo 3.19.0", + "id": "bumpalo 3.20.2", "target": "bumpalo" }, { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" }, { - "id": "wasm-bindgen-shared 0.2.105", + "id": "wasm-bindgen-shared 0.2.114", "target": "wasm_bindgen_shared" } ], "selects": {} }, "edition": "2021", - "version": "0.2.105" + "version": "0.2.114" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -58568,14 +58947,14 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-bindgen-shared 0.2.105": { + "wasm-bindgen-shared 0.2.114": { "name": "wasm-bindgen-shared", - "version": "0.2.105", + "version": "0.2.114", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/shared", "repository": { "Http": { - "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.105/download", - "sha256": "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" + "url": "https://static.crates.io/crates/wasm-bindgen-shared/0.2.114/download", + "sha256": "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" } }, "targets": [ @@ -58612,18 +58991,18 @@ "deps": { "common": [ { - "id": "unicode-ident 1.0.22", + "id": "unicode-ident 1.0.24", "target": "unicode_ident" }, { - "id": "wasm-bindgen-shared 0.2.105", + "id": "wasm-bindgen-shared 0.2.114", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.2.105" + "version": "0.2.114" }, "build_script_attrs": { "compile_data_glob": [ @@ -58691,6 +59070,126 @@ ], "license_file": "LICENSE" }, + "wasm-encoder 0.244.0": { + "name": "wasm-encoder", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-encoder", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasm-encoder/0.244.0/download", + "sha256": "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasm_encoder", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasm_encoder", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "component-model", + "std", + "wasmparser" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "leb128fmt 0.1.0", + "target": "leb128fmt" + }, + { + "id": "wasmparser 0.244.0", + "target": "wasmparser" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.244.0" + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, + "wasm-metadata 0.244.0": { + "name": "wasm-metadata", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasm-metadata", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasm-metadata/0.244.0/download", + "sha256": "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasm_metadata", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasm_metadata", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "wasm-encoder 0.244.0", + "target": "wasm_encoder" + }, + { + "id": "wasmparser 0.244.0", + "target": "wasmparser" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.244.0" + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, "wasm-streams 0.4.2": { "name": "wasm-streams", "version": "0.4.2", @@ -58723,23 +59222,23 @@ "deps": { "common": [ { - "id": "futures-util 0.3.31", + "id": "futures-util 0.3.32", "target": "futures_util" }, { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" }, { - "id": "wasm-bindgen-futures 0.4.55", + "id": "wasm-bindgen-futures 0.4.64", "target": "wasm_bindgen_futures" }, { - "id": "web-sys 0.3.82", + "id": "web-sys 0.3.91", "target": "web_sys" } ], @@ -58800,7 +59299,7 @@ "target": "ahash" }, { - "id": "bitflags 2.10.0", + "id": "bitflags 2.11.0", "target": "bitflags" }, { @@ -58808,7 +59307,7 @@ "target": "hashbrown" }, { - "id": "indexmap 2.12.0", + "id": "indexmap 2.13.0", "target": "indexmap" }, { @@ -58831,14 +59330,85 @@ ], "license_file": null }, - "web-sys 0.3.82": { + "wasmparser 0.244.0": { + "name": "wasmparser", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wasmparser", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/wasmparser/0.244.0/download", + "sha256": "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" + } + }, + "targets": [ + { + "Library": { + "crate_name": "wasmparser", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "wasmparser", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "component-model", + "features", + "hash-collections", + "simd", + "std", + "validate" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "bitflags 2.11.0", + "target": "bitflags" + }, + { + "id": "hashbrown 0.15.5", + "target": "hashbrown" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "semver 1.0.27", + "target": "semver" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.244.0" + }, + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": null + }, + "web-sys 0.3.91": { "name": "web-sys", - "version": "0.3.82", + "version": "0.3.91", "package_url": "https://github.com/wasm-bindgen/wasm-bindgen/tree/master/crates/web-sys", "repository": { "Http": { - "url": "https://static.crates.io/crates/web-sys/0.3.82/download", - "sha256": "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" + "url": "https://static.crates.io/crates/web-sys/0.3.91/download", + "sha256": "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" } }, "targets": [ @@ -58908,18 +59478,18 @@ "deps": { "common": [ { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ], "selects": {} }, "edition": "2021", - "version": "0.3.82" + "version": "0.3.91" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -58962,11 +59532,11 @@ "selects": { "cfg(all(target_family = \"wasm\", target_os = \"unknown\"))": [ { - "id": "js-sys 0.3.82", + "id": "js-sys 0.3.91", "target": "js_sys" }, { - "id": "wasm-bindgen 0.2.105", + "id": "wasm-bindgen 0.2.114", "target": "wasm_bindgen" } ] @@ -58982,14 +59552,14 @@ ], "license_file": "LICENSE-APACHE" }, - "webpki-roots 1.0.4": { + "webpki-roots 1.0.6": { "name": "webpki-roots", - "version": "1.0.4", + "version": "1.0.6", "package_url": "https://github.com/rustls/webpki-roots", "repository": { "Http": { - "url": "https://static.crates.io/crates/webpki-roots/1.0.4/download", - "sha256": "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" + "url": "https://static.crates.io/crates/webpki-roots/1.0.6/download", + "sha256": "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" } }, "targets": [ @@ -59014,7 +59584,7 @@ "deps": { "common": [ { - "id": "rustls-pki-types 1.13.0", + "id": "rustls-pki-types 1.14.0", "target": "rustls_pki_types", "alias": "pki_types" } @@ -59022,7 +59592,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.4" + "version": "1.0.6" }, "license": "CDLA-Permissive-2.0", "license_ids": [ @@ -59493,15 +60063,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -59549,15 +60119,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -59573,45 +60143,6 @@ ], "license_file": "license-apache-2.0" }, - "windows-link 0.1.3": { - "name": "windows-link", - "version": "0.1.3", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-link/0.1.3/download", - "sha256": "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_link", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_link", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "edition": "2021", - "version": "0.1.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, "windows-link 0.2.1": { "name": "windows-link", "version": "0.2.1", @@ -59651,14 +60182,14 @@ ], "license_file": "license-apache-2.0" }, - "windows-registry 0.5.3": { + "windows-registry 0.6.1": { "name": "windows-registry", - "version": "0.5.3", + "version": "0.6.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows-registry/0.5.3/download", - "sha256": "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" + "url": "https://static.crates.io/crates/windows-registry/0.6.1/download", + "sha256": "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" } }, "targets": [ @@ -59690,76 +60221,22 @@ "deps": { "common": [ { - "id": "windows-link 0.1.3", + "id": "windows-link 0.2.1", "target": "windows_link" }, { - "id": "windows-result 0.3.4", + "id": "windows-result 0.4.1", "target": "windows_result" }, { - "id": "windows-strings 0.4.2", + "id": "windows-strings 0.5.1", "target": "windows_strings" } ], "selects": {} }, "edition": "2021", - "version": "0.5.3" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-result 0.3.4": { - "name": "windows-result", - "version": "0.3.4", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-result/0.3.4/download", - "sha256": "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_result", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_result", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "windows-link 0.1.3", - "target": "windows_link" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.3.4" + "version": "0.6.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -59793,54 +60270,6 @@ } ], "library_target_name": "windows_result", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "windows-link 0.2.1", - "target": "windows_link" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.4.1" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "windows-strings 0.4.2": { - "name": "windows-strings", - "version": "0.4.2", - "package_url": "https://github.com/microsoft/windows-rs", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/windows-strings/0.4.2/download", - "sha256": "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" - } - }, - "targets": [ - { - "Library": { - "crate_name": "windows_strings", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "windows_strings", "common_attrs": { "compile_data_glob": [ "**" @@ -59854,14 +60283,14 @@ "deps": { "common": [ { - "id": "windows-link 0.1.3", + "id": "windows-link 0.2.1", "target": "windows_link" } ], "selects": {} }, "edition": "2021", - "version": "0.4.2" + "version": "0.4.1" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -59899,6 +60328,12 @@ "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "std" + ], + "selects": {} + }, "deps": { "common": [ { @@ -60151,15 +60586,8 @@ "common": [ "Win32", "Win32_Foundation", - "Win32_Networking", - "Win32_Networking_WinSock", - "Win32_Storage", - "Win32_Storage_FileSystem", "Win32_System", "Win32_System_Console", - "Win32_System_IO", - "Win32_System_Threading", - "Win32_System_WindowsProgramming", "default" ], "selects": {} @@ -60582,7 +61010,362 @@ } } ], - "library_target_name": "windows_aarch64_gnullvm", + "library_target_name": "windows_aarch64_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_gnullvm 0.48.5", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.48.5" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_aarch64_gnullvm 0.52.6": { + "name": "windows_aarch64_gnullvm", + "version": "0.52.6", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download", + "sha256": "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_gnullvm", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_gnullvm 0.52.6", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.52.6" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_aarch64_gnullvm 0.53.1": { + "name": "windows_aarch64_gnullvm", + "version": "0.53.1", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.1/download", + "sha256": "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_gnullvm", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_gnullvm", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_gnullvm 0.53.1", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.53.1" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_aarch64_msvc 0.48.5": { + "name": "windows_aarch64_msvc", + "version": "0.48.5", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download", + "sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_msvc", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_msvc 0.48.5", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.48.5" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_aarch64_msvc 0.52.6": { + "name": "windows_aarch64_msvc", + "version": "0.52.6", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", + "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_msvc", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_aarch64_msvc 0.52.6", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.52.6" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_aarch64_msvc 0.53.1": { + "name": "windows_aarch64_msvc", + "version": "0.53.1", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.53.1/download", + "sha256": "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_aarch64_msvc", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_aarch64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -60590,14 +61373,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_gnullvm 0.48.5", + "id": "windows_aarch64_msvc 0.53.1", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" + "edition": "2021", + "version": "0.53.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -60617,20 +61400,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_gnullvm 0.52.6": { - "name": "windows_aarch64_gnullvm", - "version": "0.52.6", + "windows_i686_gnu 0.48.5": { + "name": "windows_i686_gnu", + "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.52.6/download", - "sha256": "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", + "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_gnullvm", + "crate_name": "windows_i686_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -60653,7 +61436,7 @@ } } ], - "library_target_name": "windows_aarch64_gnullvm", + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -60661,14 +61444,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_gnullvm 0.52.6", + "id": "windows_i686_gnu 0.48.5", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2018", + "version": "0.48.5" }, "build_script_attrs": { "compile_data_glob": [ @@ -60688,20 +61471,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_gnullvm 0.53.1": { - "name": "windows_aarch64_gnullvm", - "version": "0.53.1", + "windows_i686_gnu 0.52.6": { + "name": "windows_i686_gnu", + "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_gnullvm/0.53.1/download", - "sha256": "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", + "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_gnullvm", + "crate_name": "windows_i686_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -60724,7 +61507,7 @@ } } ], - "library_target_name": "windows_aarch64_gnullvm", + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -60732,14 +61515,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_gnullvm 0.53.1", + "id": "windows_i686_gnu 0.52.6", "target": "build_script_build" } ], "selects": {} }, "edition": "2021", - "version": "0.53.1" + "version": "0.52.6" }, "build_script_attrs": { "compile_data_glob": [ @@ -60759,20 +61542,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.48.5": { - "name": "windows_aarch64_msvc", - "version": "0.48.5", + "windows_i686_gnu 0.53.1": { + "name": "windows_i686_gnu", + "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.48.5/download", - "sha256": "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + "url": "https://static.crates.io/crates/windows_i686_gnu/0.53.1/download", + "sha256": "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_msvc", + "crate_name": "windows_i686_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -60795,7 +61578,7 @@ } } ], - "library_target_name": "windows_aarch64_msvc", + "library_target_name": "windows_i686_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -60803,14 +61586,14 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.48.5", + "id": "windows_i686_gnu 0.53.1", "target": "build_script_build" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" + "edition": "2021", + "version": "0.53.1" }, "build_script_attrs": { "compile_data_glob": [ @@ -60830,20 +61613,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.52.6": { - "name": "windows_aarch64_msvc", + "windows_i686_gnullvm 0.52.6": { + "name": "windows_i686_gnullvm", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.52.6/download", - "sha256": "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", + "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_msvc", + "crate_name": "windows_i686_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -60866,7 +61649,7 @@ } } ], - "library_target_name": "windows_aarch64_msvc", + "library_target_name": "windows_i686_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -60874,7 +61657,7 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.52.6", + "id": "windows_i686_gnullvm 0.52.6", "target": "build_script_build" } ], @@ -60901,20 +61684,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_aarch64_msvc 0.53.1": { - "name": "windows_aarch64_msvc", + "windows_i686_gnullvm 0.53.1": { + "name": "windows_i686_gnullvm", "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_aarch64_msvc/0.53.1/download", - "sha256": "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.53.1/download", + "sha256": "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" } }, "targets": [ { "Library": { - "crate_name": "windows_aarch64_msvc", + "crate_name": "windows_i686_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -60937,7 +61720,7 @@ } } ], - "library_target_name": "windows_aarch64_msvc", + "library_target_name": "windows_i686_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -60945,7 +61728,7 @@ "deps": { "common": [ { - "id": "windows_aarch64_msvc 0.53.1", + "id": "windows_i686_gnullvm 0.53.1", "target": "build_script_build" } ], @@ -60972,20 +61755,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.48.5": { - "name": "windows_i686_gnu", + "windows_i686_msvc 0.48.5": { + "name": "windows_i686_msvc", "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.48.5/download", - "sha256": "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download", + "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnu", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61008,7 +61791,7 @@ } } ], - "library_target_name": "windows_i686_gnu", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -61016,7 +61799,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.48.5", + "id": "windows_i686_msvc 0.48.5", "target": "build_script_build" } ], @@ -61043,20 +61826,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.52.6": { - "name": "windows_i686_gnu", + "windows_i686_msvc 0.52.6": { + "name": "windows_i686_msvc", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.52.6/download", - "sha256": "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", + "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnu", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61079,7 +61862,7 @@ } } ], - "library_target_name": "windows_i686_gnu", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -61087,7 +61870,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.52.6", + "id": "windows_i686_msvc 0.52.6", "target": "build_script_build" } ], @@ -61114,20 +61897,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnu 0.53.1": { - "name": "windows_i686_gnu", + "windows_i686_msvc 0.53.1": { + "name": "windows_i686_msvc", "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnu/0.53.1/download", - "sha256": "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + "url": "https://static.crates.io/crates/windows_i686_msvc/0.53.1/download", + "sha256": "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnu", + "crate_name": "windows_i686_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61150,7 +61933,7 @@ } } ], - "library_target_name": "windows_i686_gnu", + "library_target_name": "windows_i686_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -61158,7 +61941,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnu 0.53.1", + "id": "windows_i686_msvc 0.53.1", "target": "build_script_build" } ], @@ -61185,20 +61968,91 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnullvm 0.52.6": { - "name": "windows_i686_gnullvm", + "windows_x86_64_gnu 0.48.5": { + "name": "windows_x86_64_gnu", + "version": "0.48.5", + "package_url": "https://github.com/microsoft/windows-rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download", + "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "windows_x86_64_gnu", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "windows_x86_64_gnu", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "windows_x86_64_gnu 0.48.5", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.48.5" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "license-apache-2.0" + }, + "windows_x86_64_gnu 0.52.6": { + "name": "windows_x86_64_gnu", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.52.6/download", - "sha256": "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download", + "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnullvm", + "crate_name": "windows_x86_64_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61221,7 +62075,7 @@ } } ], - "library_target_name": "windows_i686_gnullvm", + "library_target_name": "windows_x86_64_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -61229,7 +62083,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnullvm 0.52.6", + "id": "windows_x86_64_gnu 0.52.6", "target": "build_script_build" } ], @@ -61256,20 +62110,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_gnullvm 0.53.1": { - "name": "windows_i686_gnullvm", + "windows_x86_64_gnu 0.53.1": { + "name": "windows_x86_64_gnu", "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_gnullvm/0.53.1/download", - "sha256": "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.53.1/download", + "sha256": "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_gnullvm", + "crate_name": "windows_x86_64_gnu", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61292,7 +62146,7 @@ } } ], - "library_target_name": "windows_i686_gnullvm", + "library_target_name": "windows_x86_64_gnu", "common_attrs": { "compile_data_glob": [ "**" @@ -61300,7 +62154,7 @@ "deps": { "common": [ { - "id": "windows_i686_gnullvm 0.53.1", + "id": "windows_x86_64_gnu 0.53.1", "target": "build_script_build" } ], @@ -61327,20 +62181,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.48.5": { - "name": "windows_i686_msvc", + "windows_x86_64_gnullvm 0.48.5": { + "name": "windows_x86_64_gnullvm", "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.48.5/download", - "sha256": "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download", + "sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_x86_64_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61363,7 +62217,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_x86_64_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -61371,7 +62225,7 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.48.5", + "id": "windows_x86_64_gnullvm 0.48.5", "target": "build_script_build" } ], @@ -61398,20 +62252,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.52.6": { - "name": "windows_i686_msvc", + "windows_x86_64_gnullvm 0.52.6": { + "name": "windows_x86_64_gnullvm", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.52.6/download", - "sha256": "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download", + "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_x86_64_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61434,7 +62288,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_x86_64_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -61442,7 +62296,7 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.52.6", + "id": "windows_x86_64_gnullvm 0.52.6", "target": "build_script_build" } ], @@ -61469,20 +62323,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_i686_msvc 0.53.1": { - "name": "windows_i686_msvc", + "windows_x86_64_gnullvm 0.53.1": { + "name": "windows_x86_64_gnullvm", "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_i686_msvc/0.53.1/download", - "sha256": "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.1/download", + "sha256": "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" } }, "targets": [ { "Library": { - "crate_name": "windows_i686_msvc", + "crate_name": "windows_x86_64_gnullvm", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61505,7 +62359,7 @@ } } ], - "library_target_name": "windows_i686_msvc", + "library_target_name": "windows_x86_64_gnullvm", "common_attrs": { "compile_data_glob": [ "**" @@ -61513,7 +62367,7 @@ "deps": { "common": [ { - "id": "windows_i686_msvc 0.53.1", + "id": "windows_x86_64_gnullvm 0.53.1", "target": "build_script_build" } ], @@ -61540,20 +62394,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.48.5": { - "name": "windows_x86_64_gnu", + "windows_x86_64_msvc 0.48.5": { + "name": "windows_x86_64_msvc", "version": "0.48.5", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.48.5/download", - "sha256": "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download", + "sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnu", + "crate_name": "windows_x86_64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61576,7 +62430,7 @@ } } ], - "library_target_name": "windows_x86_64_gnu", + "library_target_name": "windows_x86_64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -61584,7 +62438,7 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.48.5", + "id": "windows_x86_64_msvc 0.48.5", "target": "build_script_build" } ], @@ -61611,20 +62465,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.52.6": { - "name": "windows_x86_64_gnu", + "windows_x86_64_msvc 0.52.6": { + "name": "windows_x86_64_msvc", "version": "0.52.6", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.52.6/download", - "sha256": "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download", + "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnu", + "crate_name": "windows_x86_64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61647,7 +62501,7 @@ } } ], - "library_target_name": "windows_x86_64_gnu", + "library_target_name": "windows_x86_64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -61655,7 +62509,7 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.52.6", + "id": "windows_x86_64_msvc 0.52.6", "target": "build_script_build" } ], @@ -61682,20 +62536,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnu 0.53.1": { - "name": "windows_x86_64_gnu", + "windows_x86_64_msvc 0.53.1": { + "name": "windows_x86_64_msvc", "version": "0.53.1", "package_url": "https://github.com/microsoft/windows-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnu/0.53.1/download", - "sha256": "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.53.1/download", + "sha256": "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnu", + "crate_name": "windows_x86_64_msvc", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61718,7 +62572,7 @@ } } ], - "library_target_name": "windows_x86_64_gnu", + "library_target_name": "windows_x86_64_msvc", "common_attrs": { "compile_data_glob": [ "**" @@ -61726,7 +62580,7 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnu 0.53.1", + "id": "windows_x86_64_msvc 0.53.1", "target": "build_script_build" } ], @@ -61753,20 +62607,20 @@ ], "license_file": "license-apache-2.0" }, - "windows_x86_64_gnullvm 0.48.5": { - "name": "windows_x86_64_gnullvm", - "version": "0.48.5", - "package_url": "https://github.com/microsoft/windows-rs", + "winnow 0.7.15": { + "name": "winnow", + "version": "0.7.15", + "package_url": "https://github.com/winnow-rs/winnow", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.5/download", - "sha256": "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + "url": "https://static.crates.io/crates/winnow/0.7.15/download", + "sha256": "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnullvm", + "crate_name": "winnow", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61775,69 +62629,44 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "windows_x86_64_gnullvm", + "library_target_name": "winnow", "common_attrs": { "compile_data_glob": [ "**" ], - "deps": { + "crate_features": { "common": [ - { - "id": "windows_x86_64_gnullvm 0.48.5", - "target": "build_script_build" - } + "alloc", + "default", + "std" ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2021", + "version": "0.7.15" }, - "license": "MIT OR Apache-2.0", + "license": "MIT", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "license_file": "LICENSE-MIT" }, - "windows_x86_64_gnullvm 0.52.6": { - "name": "windows_x86_64_gnullvm", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", + "wiremock 0.6.4": { + "name": "wiremock", + "version": "0.6.4", + "package_url": "https://github.com/LukeMathWalker/wiremock-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.52.6/download", - "sha256": "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + "url": "https://static.crates.io/crates/wiremock/0.6.4/download", + "sha256": "a2b8b99d4cdbf36b239a9532e31fe4fb8acc38d1897c1761e161550a7dc78e6a" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnullvm", + "crate_name": "wiremock", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61846,21 +62675,9 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "windows_x86_64_gnullvm", + "library_target_name": "wiremock", "common_attrs": { "compile_data_glob": [ "**" @@ -61868,47 +62685,101 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.52.6", - "target": "build_script_build" + "id": "assert-json-diff 2.0.2", + "target": "assert_json_diff" + }, + { + "id": "base64 0.22.1", + "target": "base64" + }, + { + "id": "deadpool 0.10.0", + "target": "deadpool" + }, + { + "id": "futures 0.3.32", + "target": "futures" + }, + { + "id": "http 1.4.0", + "target": "http" + }, + { + "id": "http-body-util 0.1.3", + "target": "http_body_util" + }, + { + "id": "hyper 1.8.1", + "target": "hyper" + }, + { + "id": "hyper-util 0.1.20", + "target": "hyper_util" + }, + { + "id": "log 0.4.29", + "target": "log" + }, + { + "id": "once_cell 1.21.3", + "target": "once_cell" + }, + { + "id": "regex 1.12.3", + "target": "regex" + }, + { + "id": "serde 1.0.228", + "target": "serde" + }, + { + "id": "serde_json 1.0.149", + "target": "serde_json" + }, + { + "id": "tokio 1.50.0", + "target": "tokio" + }, + { + "id": "url 2.5.8", + "target": "url" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2018", + "proc_macro_deps": { + "common": [ + { + "id": "async-trait 0.1.89", + "target": "async_trait" + } + ], + "selects": {} + }, + "version": "0.6.4" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "license_file": "LICENSE-APACHE" }, - "windows_x86_64_gnullvm 0.53.1": { - "name": "windows_x86_64_gnullvm", - "version": "0.53.1", - "package_url": "https://github.com/microsoft/windows-rs", + "wit-bindgen 0.51.0": { + "name": "wit-bindgen", + "version": "0.51.0", + "package_url": "https://github.com/bytecodealliance/wit-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_gnullvm/0.53.1/download", - "sha256": "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + "url": "https://static.crates.io/crates/wit-bindgen/0.51.0/download", + "sha256": "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_gnullvm", + "crate_name": "wit_bindgen", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61931,7 +62802,7 @@ } } ], - "library_target_name": "windows_x86_64_gnullvm", + "library_target_name": "wit_bindgen", "common_attrs": { "compile_data_glob": [ "**" @@ -61939,14 +62810,14 @@ "deps": { "common": [ { - "id": "windows_x86_64_gnullvm 0.53.1", + "id": "wit-bindgen 0.51.0", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.53.1" + "edition": "2024", + "version": "0.51.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -61959,27 +62830,27 @@ "**" ] }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "license_file": "LICENSE-APACHE" }, - "windows_x86_64_msvc 0.48.5": { - "name": "windows_x86_64_msvc", - "version": "0.48.5", - "package_url": "https://github.com/microsoft/windows-rs", + "wit-bindgen-core 0.51.0": { + "name": "wit-bindgen-core", + "version": "0.51.0", + "package_url": "https://github.com/bytecodealliance/wit-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.48.5/download", - "sha256": "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + "url": "https://static.crates.io/crates/wit-bindgen-core/0.51.0/download", + "sha256": "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_msvc", + "crate_name": "wit_bindgen_core", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -61988,21 +62859,9 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "windows_x86_64_msvc", + "library_target_name": "wit_bindgen_core", "common_attrs": { "compile_data_glob": [ "**" @@ -62010,47 +62869,44 @@ "deps": { "common": [ { - "id": "windows_x86_64_msvc 0.48.5", - "target": "build_script_build" + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "heck 0.5.0", + "target": "heck" + }, + { + "id": "wit-parser 0.244.0", + "target": "wit_parser" } ], "selects": {} }, - "edition": "2018", - "version": "0.48.5" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "edition": "2024", + "version": "0.51.0" }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "license_file": "LICENSE-APACHE" }, - "windows_x86_64_msvc 0.52.6": { - "name": "windows_x86_64_msvc", - "version": "0.52.6", - "package_url": "https://github.com/microsoft/windows-rs", + "wit-bindgen-rust 0.51.0": { + "name": "wit-bindgen-rust", + "version": "0.51.0", + "package_url": "https://github.com/bytecodealliance/wit-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.52.6/download", - "sha256": "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + "url": "https://static.crates.io/crates/wit-bindgen-rust/0.51.0/download", + "sha256": "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" } }, "targets": [ { "Library": { - "crate_name": "windows_x86_64_msvc", + "crate_name": "wit_bindgen_rust", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -62073,7 +62929,7 @@ } } ], - "library_target_name": "windows_x86_64_msvc", + "library_target_name": "wit_bindgen_rust", "common_attrs": { "compile_data_glob": [ "**" @@ -62081,14 +62937,46 @@ "deps": { "common": [ { - "id": "windows_x86_64_msvc 0.52.6", + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "heck 0.5.0", + "target": "heck" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "prettyplease 0.2.37", + "target": "prettyplease" + }, + { + "id": "syn 2.0.117", + "target": "syn" + }, + { + "id": "wasm-metadata 0.244.0", + "target": "wasm_metadata" + }, + { + "id": "wit-bindgen-core 0.51.0", + "target": "wit_bindgen_core" + }, + { + "id": "wit-bindgen-rust 0.51.0", "target": "build_script_build" + }, + { + "id": "wit-component 0.244.0", + "target": "wit_component" } ], "selects": {} }, - "edition": "2021", - "version": "0.52.6" + "edition": "2024", + "version": "0.51.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -62099,29 +62987,38 @@ ], "data_glob": [ "**" - ] + ], + "link_deps": { + "common": [ + { + "id": "prettyplease 0.2.37", + "target": "prettyplease" + } + ], + "selects": {} + } }, - "license": "MIT OR Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "license-apache-2.0" + "license_file": "LICENSE-APACHE" }, - "windows_x86_64_msvc 0.53.1": { - "name": "windows_x86_64_msvc", - "version": "0.53.1", - "package_url": "https://github.com/microsoft/windows-rs", + "wit-bindgen-rust-macro 0.51.0": { + "name": "wit-bindgen-rust-macro", + "version": "0.51.0", + "package_url": "https://github.com/bytecodealliance/wit-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/windows_x86_64_msvc/0.53.1/download", - "sha256": "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + "url": "https://static.crates.io/crates/wit-bindgen-rust-macro/0.51.0/download", + "sha256": "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" } }, "targets": [ { - "Library": { - "crate_name": "windows_x86_64_msvc", + "ProcMacro": { + "crate_name": "wit_bindgen_rust_macro", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -62144,7 +63041,7 @@ } } ], - "library_target_name": "windows_x86_64_msvc", + "library_target_name": "wit_bindgen_rust_macro", "common_attrs": { "compile_data_glob": [ "**" @@ -62152,14 +63049,42 @@ "deps": { "common": [ { - "id": "windows_x86_64_msvc 0.53.1", + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "prettyplease 0.2.37", + "target": "prettyplease" + }, + { + "id": "proc-macro2 1.0.106", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.45", + "target": "quote" + }, + { + "id": "syn 2.0.117", + "target": "syn" + }, + { + "id": "wit-bindgen-core 0.51.0", + "target": "wit_bindgen_core" + }, + { + "id": "wit-bindgen-rust 0.51.0", + "target": "wit_bindgen_rust" + }, + { + "id": "wit-bindgen-rust-macro 0.51.0", "target": "build_script_build" } ], "selects": {} }, - "edition": "2021", - "version": "0.53.1" + "edition": "2024", + "version": "0.51.0" }, "build_script_attrs": { "compile_data_glob": [ @@ -62170,75 +63095,38 @@ ], "data_glob": [ "**" - ] - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "license-apache-2.0" - }, - "winnow 0.7.13": { - "name": "winnow", - "version": "0.7.13", - "package_url": "https://github.com/winnow-rs/winnow", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/winnow/0.7.13/download", - "sha256": "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" - } - }, - "targets": [ - { - "Library": { - "crate_name": "winnow", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "winnow", - "common_attrs": { - "compile_data_glob": [ - "**" ], - "crate_features": { + "link_deps": { "common": [ - "alloc", - "default", - "std" + { + "id": "prettyplease 0.2.37", + "target": "prettyplease" + } ], "selects": {} - }, - "edition": "2021", - "version": "0.7.13" + } }, - "license": "MIT", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ + "Apache-2.0", "MIT" ], - "license_file": "LICENSE-MIT" + "license_file": "LICENSE-APACHE" }, - "wiremock 0.6.4": { - "name": "wiremock", - "version": "0.6.4", - "package_url": "https://github.com/LukeMathWalker/wiremock-rs", + "wit-component 0.244.0": { + "name": "wit-component", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-component", "repository": { "Http": { - "url": "https://static.crates.io/crates/wiremock/0.6.4/download", - "sha256": "a2b8b99d4cdbf36b239a9532e31fe4fb8acc38d1897c1761e161550a7dc78e6a" + "url": "https://static.crates.io/crates/wit-component/0.244.0/download", + "sha256": "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" } }, "targets": [ { "Library": { - "crate_name": "wiremock", + "crate_name": "wit_component", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -62249,7 +63137,7 @@ } } ], - "library_target_name": "wiremock", + "library_target_name": "wit_component", "common_attrs": { "compile_data_glob": [ "**" @@ -62257,101 +63145,81 @@ "deps": { "common": [ { - "id": "assert-json-diff 2.0.2", - "target": "assert_json_diff" - }, - { - "id": "base64 0.22.1", - "target": "base64" - }, - { - "id": "deadpool 0.10.0", - "target": "deadpool" - }, - { - "id": "futures 0.3.31", - "target": "futures" - }, - { - "id": "http 1.3.1", - "target": "http" - }, - { - "id": "http-body-util 0.1.3", - "target": "http_body_util" + "id": "anyhow 1.0.102", + "target": "anyhow" }, { - "id": "hyper 1.7.0", - "target": "hyper" + "id": "bitflags 2.11.0", + "target": "bitflags" }, { - "id": "hyper-util 0.1.17", - "target": "hyper_util" + "id": "indexmap 2.13.0", + "target": "indexmap" }, { - "id": "log 0.4.28", + "id": "log 0.4.29", "target": "log" }, { - "id": "once_cell 1.21.3", - "target": "once_cell" + "id": "serde 1.0.228", + "target": "serde" }, { - "id": "regex 1.12.2", - "target": "regex" + "id": "serde_json 1.0.149", + "target": "serde_json" }, { - "id": "serde 1.0.228", - "target": "serde" + "id": "wasm-encoder 0.244.0", + "target": "wasm_encoder" }, { - "id": "serde_json 1.0.145", - "target": "serde_json" + "id": "wasm-metadata 0.244.0", + "target": "wasm_metadata" }, { - "id": "tokio 1.48.0", - "target": "tokio" + "id": "wasmparser 0.244.0", + "target": "wasmparser" }, { - "id": "url 2.5.7", - "target": "url" + "id": "wit-parser 0.244.0", + "target": "wit_parser" } ], "selects": {} }, - "edition": "2018", + "edition": "2021", "proc_macro_deps": { "common": [ { - "id": "async-trait 0.1.89", - "target": "async_trait" + "id": "serde_derive 1.0.228", + "target": "serde_derive" } ], "selects": {} }, - "version": "0.6.4" + "version": "0.244.0" }, - "license": "MIT/Apache-2.0", + "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, - "wit-bindgen 0.46.0": { - "name": "wit-bindgen", - "version": "0.46.0", - "package_url": "https://github.com/bytecodealliance/wit-bindgen", + "wit-parser 0.244.0": { + "name": "wit-parser", + "version": "0.244.0", + "package_url": "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-parser", "repository": { "Http": { - "url": "https://static.crates.io/crates/wit-bindgen/0.46.0/download", - "sha256": "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" + "url": "https://static.crates.io/crates/wit-parser/0.244.0/download", + "sha256": "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" } }, "targets": [ { "Library": { - "crate_name": "wit_bindgen", + "crate_name": "wit_parser", "crate_root": "src/lib.rs", "srcs": { "allow_empty": true, @@ -62360,54 +63228,81 @@ ] } } - }, - { - "BuildScript": { - "crate_name": "build_script_build", - "crate_root": "build.rs", - "srcs": { - "allow_empty": true, - "include": [ - "**/*.rs" - ] - } - } } ], - "library_target_name": "wit_bindgen", + "library_target_name": "wit_parser", "common_attrs": { "compile_data_glob": [ "**" ], + "crate_features": { + "common": [ + "decoding", + "default", + "serde", + "serde_json" + ], + "selects": {} + }, "deps": { "common": [ { - "id": "wit-bindgen 0.46.0", - "target": "build_script_build" + "id": "anyhow 1.0.102", + "target": "anyhow" + }, + { + "id": "id-arena 2.3.0", + "target": "id_arena" + }, + { + "id": "indexmap 2.13.0", + "target": "indexmap" + }, + { + "id": "log 0.4.29", + "target": "log" + }, + { + "id": "semver 1.0.27", + "target": "semver" + }, + { + "id": "serde 1.0.228", + "target": "serde" + }, + { + "id": "serde_json 1.0.149", + "target": "serde_json" + }, + { + "id": "unicode-xid 0.2.6", + "target": "unicode_xid" + }, + { + "id": "wasmparser 0.244.0", + "target": "wasmparser" } ], "selects": {} }, "edition": "2021", - "version": "0.46.0" - }, - "build_script_attrs": { - "compile_data_glob": [ - "**" - ], - "compile_data_glob_excludes": [ - "**/*.rs" - ], - "data_glob": [ - "**" - ] + "proc_macro_deps": { + "common": [ + { + "id": "serde_derive 1.0.228", + "target": "serde_derive" + } + ], + "selects": {} + }, + "version": "0.244.0" }, "license": "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": null }, "writeable 0.6.2": { "name": "writeable", @@ -62638,7 +63533,7 @@ "target": "asn1_rs" }, { - "id": "data-encoding 2.9.0", + "id": "data-encoding 2.10.0", "target": "data_encoding" }, { @@ -62666,7 +63561,7 @@ "target": "thiserror" }, { - "id": "time 0.3.44", + "id": "time 0.3.47", "target": "time" } ], @@ -62723,13 +63618,13 @@ "selects": { "cfg(any(target_os = \"android\", target_os = \"linux\", target_os = \"macos\", target_os = \"hurd\"))": [ { - "id": "rustix 1.1.2", + "id": "rustix 1.1.4", "target": "rustix" } ], "cfg(any(target_os = \"freebsd\", target_os = \"netbsd\"))": [ { - "id": "libc 0.2.177", + "id": "libc 0.2.183", "target": "libc" } ] @@ -62978,15 +63873,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" }, { @@ -63005,14 +63900,14 @@ ], "license_file": "LICENSE" }, - "zerocopy 0.8.27": { + "zerocopy 0.8.42": { "name": "zerocopy", - "version": "0.8.27", + "version": "0.8.42", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy/0.8.27/download", - "sha256": "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" + "url": "https://static.crates.io/crates/zerocopy/0.8.42/download", + "sha256": "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3" } }, "targets": [ @@ -63057,7 +63952,7 @@ "deps": { "common": [ { - "id": "zerocopy 0.8.27", + "id": "zerocopy 0.8.42", "target": "build_script_build" } ], @@ -63067,13 +63962,13 @@ "proc_macro_deps": { "common": [ { - "id": "zerocopy-derive 0.8.27", + "id": "zerocopy-derive 0.8.42", "target": "zerocopy_derive" } ], "selects": {} }, - "version": "0.8.27" + "version": "0.8.42" }, "build_script_attrs": { "compile_data_glob": [ @@ -63094,14 +63989,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zerocopy-derive 0.8.27": { + "zerocopy-derive 0.8.42": { "name": "zerocopy-derive", - "version": "0.8.27", + "version": "0.8.42", "package_url": "https://github.com/google/zerocopy", "repository": { "Http": { - "url": "https://static.crates.io/crates/zerocopy-derive/0.8.27/download", - "sha256": "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" + "url": "https://static.crates.io/crates/zerocopy-derive/0.8.42/download", + "sha256": "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f" } }, "targets": [ @@ -63126,22 +64021,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.8.27" + "version": "0.8.42" }, "license": "BSD-2-Clause OR Apache-2.0 OR MIT", "license_ids": [ @@ -63236,15 +64131,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" }, { @@ -63314,7 +64209,7 @@ "proc_macro_deps": { "common": [ { - "id": "zeroize_derive 1.4.2", + "id": "zeroize_derive 1.4.3", "target": "zeroize_derive" } ], @@ -63329,14 +64224,14 @@ ], "license_file": "LICENSE-APACHE" }, - "zeroize_derive 1.4.2": { + "zeroize_derive 1.4.3": { "name": "zeroize_derive", - "version": "1.4.2", + "version": "1.4.3", "package_url": "https://github.com/RustCrypto/utils/tree/master/zeroize/derive", "repository": { "Http": { - "url": "https://static.crates.io/crates/zeroize_derive/1.4.2/download", - "sha256": "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" + "url": "https://static.crates.io/crates/zeroize_derive/1.4.3/download", + "sha256": "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" } }, "targets": [ @@ -63361,22 +64256,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "1.4.2" + "version": "1.4.3" }, "license": "Apache-2.0 OR MIT", "license_ids": [ @@ -63551,15 +64446,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.103", + "id": "proc-macro2 1.0.106", "target": "proc_macro2" }, { - "id": "quote 1.0.42", + "id": "quote 1.0.45", "target": "quote" }, { - "id": "syn 2.0.110", + "id": "syn 2.0.117", "target": "syn" } ], @@ -63610,7 +64505,7 @@ "target": "ed25519_dalek" }, { - "id": "thiserror 2.0.17", + "id": "thiserror 2.0.18", "target": "thiserror" } ], @@ -63626,6 +64521,76 @@ ], "license_file": "LICENSE-APACHE" }, + "zmij 1.0.21": { + "name": "zmij", + "version": "1.0.21", + "package_url": "https://github.com/dtolnay/zmij", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/zmij/1.0.21/download", + "sha256": "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" + } + }, + "targets": [ + { + "Library": { + "crate_name": "zmij", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": true, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "zmij", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "zmij 1.0.21", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.0.21" + }, + "build_script_attrs": { + "compile_data_glob": [ + "**" + ], + "compile_data_glob_excludes": [ + "**/*.rs" + ], + "data_glob": [ + "**" + ] + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE-MIT" + }, "zstd 0.13.3": { "name": "zstd", "version": "0.13.3", @@ -63835,7 +64800,7 @@ "deps": { "common": [ { - "id": "cc 1.2.45", + "id": "cc 1.2.56", "target": "cc" }, { @@ -63899,7 +64864,7 @@ "x86_64-pc-windows-msvc" ], "cfg(all(any(target_os = \"android\", target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", target_arch = \"s390x\"), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [], - "cfg(all(any(target_os = \"linux\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [], + "cfg(all(any(target_os = \"linux\", target_os = \"android\"), any(rustix_use_libc, miri, not(all(target_os = \"linux\", any(target_endian = \"little\", any(target_arch = \"s390x\", target_arch = \"powerpc\")), any(target_arch = \"arm\", all(target_arch = \"aarch64\", target_pointer_width = \"64\"), target_arch = \"riscv64\", all(rustix_use_experimental_asm, target_arch = \"powerpc\"), all(rustix_use_experimental_asm, target_arch = \"powerpc64\"), all(rustix_use_experimental_asm, target_arch = \"s390x\"), all(rustix_use_experimental_asm, target_arch = \"mips\"), all(rustix_use_experimental_asm, target_arch = \"mips32r6\"), all(rustix_use_experimental_asm, target_arch = \"mips64\"), all(rustix_use_experimental_asm, target_arch = \"mips64r6\"), target_arch = \"x86\", all(target_arch = \"x86_64\", target_pointer_width = \"64\")))))))": [], "cfg(all(any(target_os = \"linux\", target_os = \"android\"), not(any(all(target_os = \"linux\", target_env = \"\"), getrandom_backend = \"custom\", getrandom_backend = \"linux_raw\", getrandom_backend = \"rdrand\", getrandom_backend = \"rndr\"))))": [ "aarch64-unknown-linux-gnu", "x86_64-unknown-linux-gnu", @@ -63945,6 +64910,7 @@ "wasm32-unknown-unknown" ], "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p2\"))": [], + "cfg(all(target_arch = \"wasm32\", target_os = \"wasi\", target_env = \"p3\"))": [], "cfg(all(target_arch = \"wasm32\", target_vendor = \"unknown\", target_os = \"unknown\"))": [ "wasm32-unknown-unknown" ], @@ -64154,9 +65120,9 @@ ] }, "direct_deps": [ - "actix-web 4.11.0", + "actix-web 4.13.0", "ahash 0.8.12", - "anyhow 1.0.100", + "anyhow 1.0.102", "async-recursion 1.1.1", "async-trait 0.1.89", "axum 0.8.8", @@ -64166,12 +65132,12 @@ "base64 0.22.1", "byteorder 1.5.0", "candid 0.10.24", - "chrono 0.4.42", - "clap 4.5.51", + "chrono 0.4.44", + "clap 4.5.60", "clap-num 1.2.0", - "clap_complete 4.5.60", + "clap_complete 4.5.66", "colored 2.2.0", - "comfy-table 7.2.1", + "comfy-table 7.2.2", "crossbeam 0.8.4", "crossbeam-channel 0.5.15", "cryptoki 0.7.0", @@ -64184,13 +65150,13 @@ "dirs 5.0.1", "dotenv 0.15.0", "edit 0.1.5", - "env_logger 0.11.8", - "erased-serde 0.4.9", - "flate2 1.1.5", - "fs-err 3.1.3", + "env_logger 0.11.9", + "erased-serde 0.4.10", + "flate2 1.1.9", + "fs-err 3.3.0", "fs2 0.4.3", - "futures 0.3.31", - "futures-util 0.3.31", + "futures 0.3.32", + "futures-util 0.3.32", "hex 0.4.3", "human_bytes 0.4.3", "humantime 2.3.0", @@ -64234,11 +65200,11 @@ "ic-utils 0.39.3", "icp-ledger 0.9.0", "icrc-ledger-types 0.1.12", - "indexmap 2.12.0", + "indexmap 2.13.0", "itertools 0.13.0", "keyring 3.6.3", "lazy_static 1.5.0", - "log 0.4.28", + "log 0.4.29", "mockall 0.13.1", "octocrab 0.41.2", "opentelemetry 0.29.1", @@ -64250,37 +65216,37 @@ "prost 0.13.5", "rand 0.9.2", "rand_seeder 0.3.0", - "regex 1.12.2", + "regex 1.12.3", "registry-canister 0.9.0", - "reqwest 0.12.24", - "retry 2.1.0", + "reqwest 0.12.28", + "retry 2.2.0", "rewards-calculation 0.9.0", "rosetta-core 0.9.0", - "rust_decimal 1.39.0", + "rust_decimal 1.40.0", "self_update 0.41.0", "serde 1.0.228", - "serde_json 1.0.145", + "serde_json 1.0.149", "serde_yaml 0.9.34+deprecated", "sha2 0.10.9", "shlex 1.3.0", - "simple_asn1 0.6.3", + "simple_asn1 0.6.4", "slog 2.8.2", "slog-async 2.8.0", "slog-term 2.9.2", - "spinners 4.1.1", + "spinners 4.2.0", "strum 0.26.3", "strum_macros 0.26.4", "tabled 0.18.0", "tabular 0.2.0", - "tempfile 3.23.0", - "thiserror 2.0.17", - "tokio 1.48.0", - "tokio-util 0.7.17", - "url 2.5.7" + "tempfile 3.27.0", + "thiserror 2.0.18", + "tokio 1.50.0", + "tokio-util 0.7.18", + "url 2.5.8" ], "direct_dev_deps": [ "actix-rt 2.11.0", - "assert_cmd 2.1.1", + "assert_cmd 2.2.0", "serial_test 2.0.0", "wiremock 0.6.4" ], diff --git a/Cargo.lock b/Cargo.lock index 8a948c7df..d95783dbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,7 +8,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "bytes", "futures-core", "futures-sink", @@ -21,19 +21,18 @@ dependencies = [ [[package]] name = "actix-http" -version = "3.11.2" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7926860314cbe2fb5d1f13731e387ab43bd32bca224e82e6e2db85de0a3dba49" +checksum = "f860ee6746d0c5b682147b2f7f8ef036d4f92fe518251a3a35ffa3650eafdf0e" dependencies = [ "actix-codec", "actix-rt", "actix-service", "actix-utils", - "base64 0.22.1", - "bitflags 2.10.0", + "bitflags 2.11.0", "bytes", "bytestring", - "derive_more 2.0.1", + "derive_more 2.1.1", "encoding_rs", "flate2", "foldhash 0.1.5", @@ -43,12 +42,9 @@ dependencies = [ "httpdate", "itoa", "language-tags", - "local-channel", "mime", "percent-encoding", "pin-project-lite", - "rand 0.9.2", - "sha1", "smallvec", "tokio", "tokio-util", @@ -62,14 +58,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "actix-router" -version = "0.5.3" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8" +checksum = "14f8c75c51892f18d9c46150c5ac7beb81c95f78c8b83a634d49f4ca32551fe7" dependencies = [ "bytestring", "cfg-if", @@ -129,9 +125,9 @@ dependencies = [ [[package]] name = "actix-web" -version = "4.11.0" +version = "4.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a597b77b5c6d6a1e1097fddde329a83665e25c5437c696a3a9a4aa514a614dea" +checksum = "ff87453bc3b56e9b2b23c1cc0b1be8797184accf51d2abe0f8a33ec275d316bf" dependencies = [ "actix-codec", "actix-http", @@ -145,7 +141,7 @@ dependencies = [ "bytes", "bytestring", "cfg-if", - "derive_more 2.0.1", + "derive_more 2.1.1", "encoding_rs", "foldhash 0.1.5", "futures-core", @@ -162,7 +158,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "smallvec", - "socket2 0.5.10", + "socket2 0.6.3", "time", "tracing", "url", @@ -177,7 +173,7 @@ dependencies = [ "actix-router", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -213,7 +209,7 @@ version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", "once_cell", "version_check", ] @@ -302,35 +298,35 @@ dependencies = [ [[package]] name = "anstyle-query" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "anstyle-wincon" -version = "3.0.10" +version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ "anstyle", "once_cell_polyfill", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "anyhow" -version = "1.0.100" +version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "ar_archive_writer" -version = "0.2.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a" +checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b" dependencies = [ "object", ] @@ -343,9 +339,12 @@ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" [[package]] name = "arc-swap" -version = "1.7.1" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" +checksum = "f9f3647c145568cec02c42054e07bdf9a5a698e15b466fb2341bfc393cd24aa5" +dependencies = [ + "rustversion", +] [[package]] name = "arrayvec" @@ -392,7 +391,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", "synstructure", ] @@ -404,7 +403,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -419,9 +418,9 @@ dependencies = [ [[package]] name = "assert_cmd" -version = "2.1.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85" +checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9" dependencies = [ "anstyle", "bstr", @@ -457,22 +456,21 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.33" +version = "0.4.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93c1f86859c1af3d514fa19e8323147ff10ea98684e6c7b307912509f50e67b2" +checksum = "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1" dependencies = [ "compression-codecs", "compression-core", - "futures-core", "pin-project-lite", "tokio", ] [[package]] name = "async-lock" -version = "3.4.1" +version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" +checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ "event-listener 5.4.1", "event-listener-strategy", @@ -487,7 +485,7 @@ checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -509,7 +507,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -520,7 +518,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -545,7 +543,7 @@ source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6b dependencies = [ "candid", "der", - "getrandom 0.2.16", + "getrandom 0.2.17", "hex", "ic-interfaces-registry", "ic-protobuf", @@ -558,7 +556,7 @@ dependencies = [ "serde", "sev", "sha2 0.10.9", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -577,7 +575,7 @@ dependencies = [ "axum-core 0.4.5", "bytes", "futures-util", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", "itoa", @@ -589,7 +587,7 @@ dependencies = [ "rustversion", "serde", "sync_wrapper", - "tower 0.5.2", + "tower 0.5.3", "tower-layer", "tower-service", ] @@ -600,12 +598,12 @@ version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" dependencies = [ - "axum-core 0.5.5", + "axum-core 0.5.6", "base64 0.22.1", "bytes", "form_urlencoded", "futures-util", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", "hyper", @@ -624,7 +622,7 @@ dependencies = [ "sync_wrapper", "tokio", "tokio-tungstenite", - "tower 0.5.2", + "tower 0.5.3", "tower-layer", "tower-service", "tracing", @@ -639,7 +637,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", "mime", @@ -652,13 +650,13 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.5.5" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22" +checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" dependencies = [ "bytes", "futures-core", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", "mime", @@ -677,13 +675,13 @@ checksum = "dbac42c74b691b2a03a2ddece369c85c2b9ca90fc9109798f41038da7ac9f8fd" dependencies = [ "axum 0.8.8", "futures-util", - "http 1.3.1", + "http 1.4.0", "http-body", "opentelemetry", "opentelemetry-semantic-conventions", "opentelemetry_sdk", "pin-project-lite", - "tower 0.5.2", + "tower 0.5.3", ] [[package]] @@ -693,7 +691,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" dependencies = [ "futures-core", - "getrandom 0.2.16", + "getrandom 0.2.17", "instant", "pin-project-lite", "rand 0.8.5", @@ -737,9 +735,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.8.0" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "beef" @@ -826,7 +824,7 @@ checksum = "f48d6ace212fdf1b45fd6b566bb40808415344642b76c3224c07c8df9da81e97" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -837,9 +835,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.10.0" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" +checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" [[package]] name = "bitvec" @@ -873,9 +871,9 @@ dependencies = [ [[package]] name = "borsh" -version = "1.5.7" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce" +checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" dependencies = [ "borsh-derive", "cfg_aliases", @@ -883,15 +881,15 @@ dependencies = [ [[package]] name = "borsh-derive" -version = "1.5.7" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3" +checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c" dependencies = [ "once_cell", "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -987,9 +985,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.19.0" +version = "3.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" [[package]] name = "by_address" @@ -1090,15 +1088,15 @@ dependencies = [ "ahash 0.8.12", "hashbrown 0.15.5", "once_cell", - "thiserror 2.0.17", + "thiserror 2.0.18", "web-time", ] [[package]] name = "camino" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" +checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" dependencies = [ "serde_core", ] @@ -1144,7 +1142,7 @@ dependencies = [ "lazy_static", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -1206,9 +1204,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.45" +version = "1.2.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe" +checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" dependencies = [ "find-msvc-tools", "jobserver", @@ -1230,16 +1228,16 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] name = "chrono" -version = "0.4.42" +version = "0.4.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" dependencies = [ "iana-time-zone", "js-sys", "num-traits", "serde", "wasm-bindgen", - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -1271,9 +1269,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.51" +version = "4.5.60" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5" +checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a" dependencies = [ "clap_builder", "clap_derive", @@ -1290,9 +1288,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.51" +version = "4.5.60" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a" +checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876" dependencies = [ "anstream", "anstyle", @@ -1303,30 +1301,30 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.5.60" +version = "4.5.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e602857739c5a4291dfa33b5a298aeac9006185229a700e5810a3ef7272d971" +checksum = "c757a3b7e39161a4e56f9365141ada2a6c915a8622c408ab6bb4b5d047371031" dependencies = [ "clap", ] [[package]] name = "clap_derive" -version = "4.5.49" +version = "4.5.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" +checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "clap_lex" -version = "0.7.6" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" +checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831" [[package]] name = "codespan-reporting" @@ -1356,9 +1354,9 @@ dependencies = [ [[package]] name = "comfy-table" -version = "7.2.1" +version = "7.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b" +checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" dependencies = [ "crossterm", "unicode-segmentation", @@ -1367,9 +1365,9 @@ dependencies = [ [[package]] name = "comparable" -version = "0.5.5" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8606f9aa5b5a2df738584b139c79413d0c1545ed0ffd16e76e0944d1de7388c0" +checksum = "838d2d21a142bc619c262bb2145d1af0a2e3dccfcb1360bbc47ae4c6686e1ec6" dependencies = [ "comparable_derive", "comparable_helper", @@ -1379,9 +1377,9 @@ dependencies = [ [[package]] name = "comparable_derive" -version = "0.5.5" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41f36ea7383b9a2a9ae0a4e225d8a9c1c3aeadde78c59cdc35bad5c02b4dad01" +checksum = "8fef8fab462495e2956b0666a4fb50c6c5058bdbd2c2bc91c5894a03f916177f" dependencies = [ "convert_case 0.4.0", "proc-macro2", @@ -1391,9 +1389,9 @@ dependencies = [ [[package]] name = "comparable_helper" -version = "0.5.5" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71c9b60259084f32c14d32476f3a299b4997e3c186e1473bd972ff8a8c83d1b4" +checksum = "be7a1af3ce1ccc3c9a6edfc769672c5d7512959e292882beca663843a660eb9e" dependencies = [ "convert_case 0.6.0", "proc-macro2", @@ -1403,9 +1401,9 @@ dependencies = [ [[package]] name = "compression-codecs" -version = "0.4.32" +version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "680dc087785c5230f8e8843e2e57ac7c1c90488b6a91b88caa265410568f441b" +checksum = "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7" dependencies = [ "brotli", "compression-core", @@ -1417,9 +1415,9 @@ dependencies = [ [[package]] name = "compression-core" -version = "0.4.30" +version = "0.4.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a9b614a5787ef0c8802a55766480563cb3a93b435898c422ed2a359cf811582" +checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" [[package]] name = "concurrent-queue" @@ -1436,7 +1434,7 @@ version = "0.7.3" dependencies = [ "crossbeam", "crossbeam-channel", - "erased-serde 0.4.9", + "erased-serde 0.4.10", "ic-sys", "ic-types", "regex", @@ -1480,6 +1478,15 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "convert_case" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "core-foundation" version = "0.9.4" @@ -1595,11 +1602,11 @@ version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "crossterm_winapi", "document-features", "parking_lot", - "rustix 1.1.2", + "rustix 1.1.4", "winapi", ] @@ -1720,7 +1727,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -1832,7 +1839,7 @@ dependencies = [ "proc-macro2", "quote", "strsim 0.11.1", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -1854,7 +1861,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ "darling_core 0.20.11", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -1878,9 +1885,9 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.9.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" +checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" [[package]] name = "datasize" @@ -1904,9 +1911,9 @@ dependencies = [ [[package]] name = "dbus" -version = "0.9.9" +version = "0.9.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "190b6255e8ab55a7b568df5a883e9497edc3e4821c06396612048b430e5ad1e9" +checksum = "21b3aa68d7e7abee336255bd7248ea965cc393f3e70411135a6f6a4b651345d4" dependencies = [ "libc", "libdbus-sys", @@ -1951,7 +1958,7 @@ dependencies = [ "futures", "ic-base-types", "ic-management-types", - "indexmap 2.12.0", + "indexmap 2.13.0", "itertools 0.13.0", "lazy_static", "log", @@ -2000,14 +2007,14 @@ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "deranged" -version = "0.5.5" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" dependencies = [ "powerfmt", "serde_core", @@ -2034,27 +2041,29 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "derive_more" -version = "2.0.1" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" +checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" dependencies = [ "derive_more-impl", ] [[package]] name = "derive_more-impl" -version = "2.0.1" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" dependencies = [ + "convert_case 0.10.0", "proc-macro2", "quote", - "syn 2.0.110", + "rustc_version", + "syn 2.0.117", "unicode-xid", ] @@ -2231,7 +2240,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -2311,7 +2320,7 @@ dependencies = [ "ic-sys", "ic-types", "icp-ledger", - "indexmap 2.12.0", + "indexmap 2.13.0", "itertools 0.13.0", "keyring", "log", @@ -2440,9 +2449,9 @@ dependencies = [ [[package]] name = "ena" -version = "0.14.3" +version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" +checksum = "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1" dependencies = [ "log", ] @@ -2471,14 +2480,14 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "env_filter" -version = "0.1.4" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" +checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f" dependencies = [ "log", "regex", @@ -2499,9 +2508,9 @@ dependencies = [ [[package]] name = "env_logger" -version = "0.11.8" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" +checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d" dependencies = [ "anstream", "anstyle", @@ -2527,9 +2536,9 @@ dependencies = [ [[package]] name = "erased-serde" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3" +checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec" dependencies = [ "serde", "serde_core", @@ -2595,7 +2604,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -2616,21 +2625,20 @@ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" [[package]] name = "filetime" -version = "0.2.26" +version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" +checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" dependencies = [ "cfg-if", "libc", "libredox", - "windows-sys 0.60.2", ] [[package]] name = "find-msvc-tools" -version = "0.1.4" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" [[package]] name = "fixedbitset" @@ -2652,9 +2660,9 @@ checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe" [[package]] name = "flate2" -version = "1.1.5" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" dependencies = [ "crc32fast", "miniz_oxide", @@ -2695,9 +2703,9 @@ checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" [[package]] name = "fs-err" -version = "3.1.3" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ad492b2cf1d89d568a43508ab24f98501fe03f2f31c01e1d0fe7366a71745d2" +checksum = "73fde052dbfc920003cfd2c8e2c6e6d4cc7c1091538c3a24226cec0665ab08c0" dependencies = [ "autocfg", ] @@ -2720,9 +2728,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" +checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" dependencies = [ "futures-channel", "futures-core", @@ -2735,9 +2743,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" dependencies = [ "futures-core", "futures-sink", @@ -2745,15 +2753,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" [[package]] name = "futures-executor" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" dependencies = [ "futures-core", "futures-task", @@ -2762,38 +2770,38 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" [[package]] name = "futures-macro" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "futures-sink" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" [[package]] name = "futures-task" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" [[package]] name = "futures-util" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" dependencies = [ "futures-channel", "futures-core", @@ -2803,7 +2811,6 @@ dependencies = [ "futures-task", "memchr", "pin-project-lite", - "pin-utils", "slab", ] @@ -2845,9 +2852,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", "js-sys", @@ -2865,11 +2872,24 @@ dependencies = [ "cfg-if", "js-sys", "libc", - "r-efi", + "r-efi 5.3.0", "wasip2", "wasm-bindgen", ] +[[package]] +name = "getrandom" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", + "wasip2", + "wasip3", +] + [[package]] name = "gimli" version = "0.26.2" @@ -2912,17 +2932,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" +checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" dependencies = [ "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "http 1.3.1", - "indexmap 2.12.0", + "http 1.4.0", + "indexmap 2.13.0", "slab", "tokio", "tokio-util", @@ -2979,9 +2999,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ "allocator-api2", "equivalent", @@ -3080,12 +3100,11 @@ dependencies = [ [[package]] name = "http" -version = "1.3.1" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" dependencies = [ "bytes", - "fnv", "itoa", ] @@ -3096,7 +3115,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ "bytes", - "http 1.3.1", + "http 1.4.0", ] [[package]] @@ -3107,7 +3126,7 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ "bytes", "futures-core", - "http 1.3.1", + "http 1.4.0", "http-body", "pin-project-lite", ] @@ -3138,16 +3157,16 @@ checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424" [[package]] name = "hyper" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" dependencies = [ "atomic-waker", "bytes", "futures-channel", "futures-core", "h2", - "http 1.3.1", + "http 1.4.0", "http-body", "httparse", "httpdate", @@ -3165,7 +3184,7 @@ version = "0.27.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" dependencies = [ - "http 1.3.1", + "http 1.4.0", "hyper", "hyper-util", "log", @@ -3193,25 +3212,25 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.17" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ "base64 0.22.1", "bytes", "futures-channel", - "futures-core", "futures-util", - "http 1.3.1", + "http 1.4.0", "http-body", "hyper", "ipnet", "libc", "percent-encoding", "pin-project-lite", - "socket2 0.6.1", + "socket2 0.6.3", "system-configuration", "tokio", + "tower-layer", "tower-service", "tracing", "windows-registry", @@ -3219,9 +3238,9 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.64" +version = "0.1.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -3254,7 +3273,7 @@ dependencies = [ "slog", "tokio", "tonic", - "tower 0.5.2", + "tower 0.5.3", ] [[package]] @@ -3288,9 +3307,9 @@ dependencies = [ "elliptic-curve", "futures-util", "hex", - "http 1.3.1", + "http 1.4.0", "http-body", - "ic-certification 3.0.3", + "ic-certification 3.1.0", "ic-transport-types 0.39.3", "ic-verify-bls-signature 0.5.0", "k256", @@ -3309,7 +3328,7 @@ dependencies = [ "sha2 0.10.9", "simple_asn1", "stop-token", - "thiserror 2.0.17", + "thiserror 2.0.18", "time", "tokio", "tower-service", @@ -3337,10 +3356,10 @@ dependencies = [ "elliptic-curve", "futures-util", "hex", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", - "ic-certification 3.0.3", + "ic-certification 3.1.0", "ic-ed25519 0.5.0", "ic-transport-types 0.45.0", "ic-verify-bls-signature 0.6.0", @@ -3360,7 +3379,7 @@ dependencies = [ "serde_repr", "sha2 0.10.9", "stop-token", - "thiserror 2.0.17", + "thiserror 2.0.18", "time", "tokio", "tower-service", @@ -3406,7 +3425,7 @@ version = "0.9.0" source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "candid", - "ic-error-types 0.2.0", + "ic-error-types", "ic-interfaces-adapter-client", "ic-protobuf", "serde", @@ -3436,7 +3455,7 @@ dependencies = [ "rustls", "serde_cbor", "tokio", - "tower 0.5.2", + "tower 0.5.3", "url", ] @@ -3507,7 +3526,7 @@ dependencies = [ "serde", "sha2 0.10.9", "simple_asn1", - "thiserror 2.0.17", + "thiserror 2.0.18", "trustworthy-node-metrics-types", "url", ] @@ -3521,7 +3540,7 @@ dependencies = [ "ic-canonical-state-tree-hash", "ic-certification-version", "ic-crypto-tree-hash", - "ic-error-types 0.2.0", + "ic-error-types", "ic-protobuf", "ic-registry-routing-table", "ic-registry-subnet-type", @@ -3545,7 +3564,7 @@ dependencies = [ "itertools 0.12.1", "leb128", "scoped_threadpool", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -3557,14 +3576,14 @@ dependencies = [ "candid", "ic-cdk-executor", "ic-cdk-macros", - "ic-error-types 0.2.0", + "ic-error-types", "ic-management-canister-types", "ic0", "pin-project-lite", "serde", "serde_bytes", "slotmap", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -3588,7 +3607,7 @@ dependencies = [ "darling 0.20.11", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -3619,9 +3638,9 @@ dependencies = [ [[package]] name = "ic-certification" -version = "3.0.3" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffb40d73f9f8273dc6569a68859003bbd467c9dc6d53c6fd7d174742f857209d" +checksum = "7c11273a40f8d67926ee423b0bd21381ae8419db809b42f33c5cb3319549b40f" dependencies = [ "hex", "serde", @@ -3798,7 +3817,7 @@ dependencies = [ "serde_cbor", "strum 0.26.3", "strum_macros 0.26.4", - "thiserror 2.0.17", + "thiserror 2.0.18", "zeroize", ] @@ -3869,7 +3888,7 @@ dependencies = [ "ic-protobuf", "serde", "serde_bytes", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -3912,7 +3931,7 @@ dependencies = [ "ic-types", "pem", "simple_asn1", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -3920,7 +3939,7 @@ name = "ic-dummy-getrandom-for-wasm" version = "0.1.0" source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", ] [[package]] @@ -3936,7 +3955,7 @@ dependencies = [ "ic_principal", "pem", "rand 0.8.5", - "thiserror 2.0.17", + "thiserror 2.0.18", "zeroize", ] @@ -3952,21 +3971,10 @@ dependencies = [ "ic_principal", "pem", "rand 0.8.5", - "thiserror 2.0.17", + "thiserror 2.0.18", "zeroize", ] -[[package]] -name = "ic-error-types" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbeeb3d91aa179d6496d7293becdacedfc413c825cac79fd54ea1906f003ee55" -dependencies = [ - "serde", - "strum 0.26.3", - "strum_macros 0.26.4", -] - [[package]] name = "ic-error-types" version = "0.2.0" @@ -3999,7 +4007,7 @@ dependencies = [ "darling 0.20.11", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -4029,7 +4037,7 @@ dependencies = [ "prometheus", "slog", "tokio", - "tower 0.5.2", + "tower 0.5.3", ] [[package]] @@ -4061,7 +4069,7 @@ dependencies = [ "num-traits", "serde", "serde_bytes", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -4104,7 +4112,7 @@ dependencies = [ "ic-canister-log", "ic-cdk", "ic-cdk-timers", - "ic-certification 3.0.3", + "ic-certification 3.1.0", "ic-http-types", "ic-icrc1", "ic-icrc1-tokens-u64", @@ -4166,7 +4174,7 @@ source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6b dependencies = [ "ic-base-types", "ic-crypto-interfaces-sig-verification", - "ic-error-types 0.2.0", + "ic-error-types", "ic-heap-bytes", "ic-management-canister-types-private", "ic-protobuf", @@ -4178,8 +4186,8 @@ dependencies = [ "serde", "strum 0.26.3", "strum_macros 0.26.4", - "thiserror 2.0.17", - "tower 0.5.2", + "thiserror 2.0.18", + "tower 0.5.3", ] [[package]] @@ -4188,7 +4196,7 @@ version = "0.9.0" source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "strum_macros 0.26.4", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -4280,7 +4288,7 @@ dependencies = [ "decentralization", "dirs 5.0.1", "dotenv", - "env_logger 0.11.8", + "env_logger 0.11.9", "fs-err", "fs2", "futures", @@ -4304,7 +4312,7 @@ dependencies = [ "ic-registry-nns-data-provider", "ic-registry-subnet-type", "ic-types", - "indexmap 2.12.0", + "indexmap 2.13.0", "itertools 0.13.0", "lazy_static", "log", @@ -4343,7 +4351,7 @@ dependencies = [ "ic-base-types", "ic-btc-interface", "ic-btc-replica-types", - "ic-error-types 0.2.0", + "ic-error-types", "ic-protobuf", "ic-utils 0.9.0", "num-traits", @@ -4370,7 +4378,7 @@ dependencies = [ "ic-protobuf", "ic-registry-subnet-type", "ic-types", - "indexmap 2.12.0", + "indexmap 2.13.0", "registry-canister", "reqwest", "serde", @@ -4398,9 +4406,9 @@ dependencies = [ [[package]] name = "ic-metrics-encoder" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b5c7628eac357aecda461130f8074468be5aa4d258a002032d82d817f79f1f8" +checksum = "36e10842d8cc059a437567811d966cd8fab06e79d3382e4535db2a501cadb192" [[package]] name = "ic-nervous-system-access-list" @@ -4449,7 +4457,7 @@ dependencies = [ "candid", "dfn_core", "ic-base-types", - "ic-error-types 0.2.0", + "ic-error-types", "ic-ledger-core", "ic-management-canister-types-private", "ic-nervous-system-canisters", @@ -4840,7 +4848,7 @@ source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6b dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -4909,7 +4917,7 @@ dependencies = [ "candid", "comparable", "erased-serde 0.3.31", - "ic-error-types 0.2.0", + "ic-error-types", "prost", "serde", "serde_json", @@ -4944,7 +4952,7 @@ dependencies = [ "ic-registry-transport", "ic-utils 0.9.0", "serde", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -4998,7 +5006,7 @@ dependencies = [ "ic-registry-subnet-features", "ic-types", "serde_cbor", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -5035,7 +5043,7 @@ dependencies = [ "ic-registry-nns-data-provider", "ic-registry-transport", "ic-types", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "url", ] @@ -5161,7 +5169,7 @@ dependencies = [ "ic-certification-version", "ic-config", "ic-crypto-sha2", - "ic-error-types 0.2.0", + "ic-error-types", "ic-interfaces", "ic-limits", "ic-logger", @@ -5282,7 +5290,7 @@ dependencies = [ "sns-treasury-manager", "strum 0.26.3", "strum_macros 0.26.4", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -5521,7 +5529,7 @@ dependencies = [ "phantom_newtype", "prost", "rand 0.8.5", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "wsl", ] @@ -5534,14 +5542,14 @@ checksum = "979ee7bee5a67150a4c090fb012c93c294a528b4a867bad9a15cc6d01cb4227f" dependencies = [ "candid", "hex", - "ic-certification 3.0.3", + "ic-certification 3.1.0", "leb128", "serde", "serde_bytes", "serde_cbor", "serde_repr", "sha2 0.10.9", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -5552,14 +5560,14 @@ checksum = "4a775244756a5d97ff19b08071a946a4b4896904e35deb036bf215e80f2e703d" dependencies = [ "candid", "hex", - "ic-certification 3.0.3", + "ic-certification 3.1.0", "leb128", "serde", "serde_bytes", "serde_cbor", "serde_repr", "sha2 0.10.9", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -5577,7 +5585,7 @@ dependencies = [ "ic-crypto-internal-types", "ic-crypto-sha2", "ic-crypto-tree-hash", - "ic-error-types 0.2.0", + "ic-error-types", "ic-heap-bytes", "ic-limits", "ic-management-canister-types-private", @@ -5597,7 +5605,7 @@ dependencies = [ "serde_with", "strum 0.26.3", "strum_macros 0.26.4", - "thiserror 2.0.17", + "thiserror 2.0.18", "thousands", ] @@ -5629,7 +5637,7 @@ dependencies = [ "sha2 0.10.9", "strum 0.26.3", "strum_macros 0.26.4", - "thiserror 2.0.17", + "thiserror 2.0.18", "time", "tokio", ] @@ -5656,7 +5664,7 @@ version = "0.9.0" source = "git+https://github.com/dfinity/ic.git?rev=89cc1c20223532c900b94de5bc6bd8cbde278797#89cc1c20223532c900b94de5bc6bd8cbde278797" dependencies = [ "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -5752,9 +5760,9 @@ dependencies = [ [[package]] name = "ic_principal" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1762deb6f7c8d8c2bdee4b6c5a47b60195b74e9b5280faa5ba29692f8e17429c" +checksum = "8b2b6c5941dfd659e77b262342fa58ad49489367ad026255cda8c43682d0c534" dependencies = [ "arbitrary", "crc32fast", @@ -5892,9 +5900,9 @@ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" [[package]] name = "icu_properties" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ "icu_collections", "icu_locale_core", @@ -5906,9 +5914,9 @@ dependencies = [ [[package]] name = "icu_properties_data" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" [[package]] name = "icu_provider" @@ -5927,9 +5935,9 @@ dependencies = [ [[package]] name = "id-arena" -version = "2.2.1" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" [[package]] name = "ident_case" @@ -5976,12 +5984,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.12.0" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ "equivalent", - "hashbrown 0.16.0", + "hashbrown 0.16.1", "serde", "serde_core", ] @@ -6016,15 +6024,15 @@ checksum = "d8972d5be69940353d5347a1344cb375d9b457d6809b428b05bb1ca2fb9ce007" [[package]] name = "ipnet" -version = "2.11.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" [[package]] name = "iri-string" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397" +checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" dependencies = [ "memchr", "serde", @@ -6095,15 +6103,15 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.15" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" [[package]] name = "jiff" -version = "0.2.16" +version = "0.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35" +checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359" dependencies = [ "jiff-static", "log", @@ -6114,13 +6122,13 @@ dependencies = [ [[package]] name = "jiff-static" -version = "0.2.16" +version = "0.2.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69" +checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -6135,9 +6143,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.82" +version = "0.3.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" +checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" dependencies = [ "once_cell", "wasm-bindgen", @@ -6185,9 +6193,9 @@ dependencies = [ [[package]] name = "keccak" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653" dependencies = [ "cpufeatures", ] @@ -6201,7 +6209,7 @@ dependencies = [ "dbus-secret-service", "log", "security-framework 2.11.1", - "security-framework 3.5.1", + "security-framework 3.7.0", "zeroize", ] @@ -6219,7 +6227,7 @@ dependencies = [ "petgraph 0.6.5", "pico-args", "regex", - "regex-syntax 0.8.8", + "regex-syntax 0.8.10", "string_cache", "term 0.7.0", "tiny-keccak", @@ -6257,26 +6265,32 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + [[package]] name = "libc" -version = "0.2.177" +version = "0.2.183" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" +checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" [[package]] name = "libdbus-sys" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cbe856efeb50e4681f010e9aaa2bf0a644e10139e54cde10fc83a307c23bd9f" +checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043" dependencies = [ "pkg-config", ] [[package]] name = "libflate" -version = "2.2.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "249fa21ba2b59e8cbd69e722f5b31e1b466db96c937ae3de23e8b99ead0d1383" +checksum = "e3248b8d211bd23a104a42d81b4fa8bb8ac4a3b75e7a43d85d2c9ccb6179cd74" dependencies = [ "adler32", "core2", @@ -6292,7 +6306,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a599cb10a9cd92b1300debcef28da8f70b935ec937f44fcd1b70a7c986a11c5c" dependencies = [ "core2", - "hashbrown 0.16.0", + "hashbrown 0.16.1", "rle-decode-fast", ] @@ -6308,19 +6322,20 @@ dependencies = [ [[package]] name = "libm" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" [[package]] name = "libredox" -version = "0.1.10" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" +checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "libc", - "redox_syscall", + "plain", + "redox_syscall 0.7.3", ] [[package]] @@ -6331,9 +6346,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "linux-raw-sys" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" [[package]] name = "litemap" @@ -6347,17 +6362,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" -[[package]] -name = "local-channel" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8" -dependencies = [ - "futures-core", - "futures-sink", - "local-waker", -] - [[package]] name = "local-waker" version = "0.1.4" @@ -6375,9 +6379,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.28" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "log-fetcher" @@ -6447,7 +6451,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -6496,9 +6500,9 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" [[package]] name = "memchr" -version = "2.7.6" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "memoffset" @@ -6565,9 +6569,9 @@ dependencies = [ [[package]] name = "mio" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ "libc", "log", @@ -6598,7 +6602,7 @@ dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -6678,7 +6682,7 @@ dependencies = [ name = "multiservice-discovery-shared" version = "0.7.3" dependencies = [ - "erased-serde 0.4.9", + "erased-serde 0.4.10", "ic-sns-wasm", "ic-types", "regex", @@ -6760,9 +6764,9 @@ dependencies = [ [[package]] name = "num-conv" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" +checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" [[package]] name = "num-integer" @@ -6812,9 +6816,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "object" -version = "0.32.2" +version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" +checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ "memchr", ] @@ -6846,7 +6850,7 @@ dependencies = [ "either", "futures", "futures-util", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", "hyper", @@ -6864,7 +6868,7 @@ dependencies = [ "serde_urlencoded", "snafu", "tokio", - "tower 0.5.2", + "tower 0.5.3", "tower-http", "tracing", "url", @@ -6904,9 +6908,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "openssl-probe" -version = "0.1.6" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" [[package]] name = "opentelemetry" @@ -6918,7 +6922,7 @@ dependencies = [ "futures-sink", "js-sys", "pin-project-lite", - "thiserror 2.0.17", + "thiserror 2.0.18", "tracing", ] @@ -6955,7 +6959,7 @@ dependencies = [ "percent-encoding", "rand 0.9.2", "serde_json", - "thiserror 2.0.17", + "thiserror 2.0.18", "tracing", ] @@ -7044,9 +7048,9 @@ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.5.18", "smallvec", - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -7082,9 +7086,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "pest" -version = "2.8.3" +version = "2.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "989e7521a040efde50c3ab6bbadafbe15ab6dc042686926be59ac35d74607df4" +checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662" dependencies = [ "memchr", "ucd-trie", @@ -7092,9 +7096,9 @@ dependencies = [ [[package]] name = "pest_derive" -version = "2.8.3" +version = "2.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "187da9a3030dbafabbbfb20cb323b976dc7b7ce91fcd84f2f74d6e31d378e2de" +checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77" dependencies = [ "pest", "pest_generator", @@ -7102,22 +7106,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.8.3" +version = "2.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49b401d98f5757ebe97a26085998d6c0eecec4995cad6ab7fc30ffdf4b052843" +checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "pest_meta" -version = "2.8.3" +version = "2.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a" +checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220" dependencies = [ "pest", "sha2 0.10.9", @@ -7130,7 +7134,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset 0.4.2", - "indexmap 2.12.0", + "indexmap 2.13.0", ] [[package]] @@ -7140,7 +7144,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" dependencies = [ "fixedbitset 0.5.7", - "indexmap 2.12.0", + "indexmap 2.13.0", ] [[package]] @@ -7172,29 +7176,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.10" +version = "1.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" +checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.10" +version = "1.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" +checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "pin-project-lite" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" [[package]] name = "pin-utils" @@ -7229,17 +7233,23 @@ version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" +[[package]] +name = "plain" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" + [[package]] name = "portable-atomic" -version = "1.11.1" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" +checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" [[package]] name = "portable-atomic-util" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" +checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5" dependencies = [ "portable-atomic", ] @@ -7276,9 +7286,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" [[package]] name = "predicates" -version = "3.1.3" +version = "3.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" +checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe" dependencies = [ "anstyle", "difflib", @@ -7287,15 +7297,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" +checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144" [[package]] name = "predicates-tree" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" +checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2" dependencies = [ "predicates-core", "termtree", @@ -7339,7 +7349,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ "proc-macro2", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -7363,9 +7373,9 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "3.4.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" dependencies = [ "toml_edit", ] @@ -7413,7 +7423,7 @@ dependencies = [ "proc-macro-error-attr2", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -7424,9 +7434,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.103" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" dependencies = [ "unicode-ident", ] @@ -7437,7 +7447,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cc5b72d8145275d844d4b5f6d4e1eef00c8cd889edb6035c21675d1bb1f45c9f" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "hex", "procfs-core", "rustix 0.38.44", @@ -7449,7 +7459,7 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "239df02d8349b06fc07398a3a1697b06418223b1c7725085e801e7c0fc6a12ec" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "hex", ] @@ -7467,7 +7477,7 @@ dependencies = [ "parking_lot", "procfs", "protobuf", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -7531,13 +7541,13 @@ checksum = "14cae93065090804185d3b75f0bf93b8eeda30c7a9b4a33d3bdb3988d6229e50" dependencies = [ "bit-set 0.8.0", "bit-vec 0.8.0", - "bitflags 2.10.0", + "bitflags 2.11.0", "lazy_static", "num-traits", "rand 0.8.5", "rand_chacha 0.3.1", "rand_xorshift", - "regex-syntax 0.8.8", + "regex-syntax 0.8.10", "rusty-fork", "tempfile", "unarray", @@ -7569,7 +7579,7 @@ dependencies = [ "prost", "prost-types", "regex", - "syn 2.0.110", + "syn 2.0.117", "tempfile", ] @@ -7583,7 +7593,7 @@ dependencies = [ "itertools 0.14.0", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -7617,9 +7627,9 @@ dependencies = [ [[package]] name = "psm" -version = "0.1.28" +version = "0.1.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01" +checksum = "3852766467df634d74f0b2d7819bf8dc483a0eb2e3b0f50f756f9cfe8b0d18d8" dependencies = [ "ar_archive_writer", "cc", @@ -7673,8 +7683,8 @@ dependencies = [ "quinn-udp", "rustc-hash", "rustls", - "socket2 0.6.1", - "thiserror 2.0.17", + "socket2 0.6.3", + "thiserror 2.0.18", "tokio", "tracing", "web-time", @@ -7682,9 +7692,9 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.13" +version = "0.11.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" +checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" dependencies = [ "bytes", "getrandom 0.3.4", @@ -7695,7 +7705,7 @@ dependencies = [ "rustls", "rustls-pki-types", "slab", - "thiserror 2.0.17", + "thiserror 2.0.18", "tinyvec", "tracing", "web-time", @@ -7710,16 +7720,16 @@ dependencies = [ "cfg_aliases", "libc", "once_cell", - "socket2 0.6.1", + "socket2 0.6.3", "tracing", "windows-sys 0.60.2", ] [[package]] name = "quote" -version = "1.0.42" +version = "1.0.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" dependencies = [ "proc-macro2", ] @@ -7730,6 +7740,12 @@ version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + [[package]] name = "radium" version = "0.7.0" @@ -7754,7 +7770,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ "rand_chacha 0.9.0", - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] @@ -7774,7 +7790,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] @@ -7783,14 +7799,14 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", ] [[package]] name = "rand_core" -version = "0.9.3" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" dependencies = [ "getrandom 0.3.4", ] @@ -7845,7 +7861,16 @@ version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", +] + +[[package]] +name = "redox_syscall" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16" +dependencies = [ + "bitflags 2.11.0", ] [[package]] @@ -7854,7 +7879,7 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", "libredox", "thiserror 1.0.69", ] @@ -7865,39 +7890,39 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", "libredox", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] name = "regex" -version = "1.12.2" +version = "1.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" dependencies = [ "aho-corasick", "memchr", "regex-automata", - "regex-syntax 0.8.8", + "regex-syntax 0.8.10", ] [[package]] name = "regex-automata" -version = "0.4.13" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.8.8", + "regex-syntax 0.8.10", ] [[package]] name = "regex-lite" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da" +checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" [[package]] name = "regex-syntax" @@ -7907,9 +7932,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.8.8" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" [[package]] name = "registry-canister" @@ -7925,7 +7950,7 @@ dependencies = [ "dfn_core", "dfn_http_metrics", "futures", - "getrandom 0.2.16", + "getrandom 0.2.17", "hex", "ic-base-types", "ic-cdk", @@ -7981,16 +8006,16 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.12.24" +version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ "base64 0.22.1", "bytes", "futures-channel", "futures-core", "futures-util", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", "hyper", @@ -8010,7 +8035,7 @@ dependencies = [ "tokio", "tokio-rustls", "tokio-util", - "tower 0.5.2", + "tower 0.5.3", "tower-http", "tower-service", "url", @@ -8023,9 +8048,9 @@ dependencies = [ [[package]] name = "retry" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1e211f878258887b3e65dd3c8ff9f530fe109f441a117ee0cdc27f341355032" +checksum = "1cab9bd343c737660e523ee69f788018f3db686d537d2fd0f99c9f747c1bda4f" dependencies = [ "rand 0.9.2", ] @@ -8064,7 +8089,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if", - "getrandom 0.2.16", + "getrandom 0.2.17", "libc", "untrusted", "windows-sys 0.52.0", @@ -8072,9 +8097,9 @@ dependencies = [ [[package]] name = "rkyv" -version = "0.7.45" +version = "0.7.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" +checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1" dependencies = [ "bitvec", "bytecheck", @@ -8090,9 +8115,9 @@ dependencies = [ [[package]] name = "rkyv_derive" -version = "0.7.45" +version = "0.7.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" +checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5" dependencies = [ "proc-macro2", "quote", @@ -8130,7 +8155,7 @@ dependencies = [ "serde_json", "serde_with", "tokio", - "tower 0.5.2", + "tower 0.5.3", "tower-http", "tracing", ] @@ -8157,9 +8182,9 @@ dependencies = [ [[package]] name = "rust_decimal" -version = "1.39.0" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282" +checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0" dependencies = [ "arrayvec 0.7.6", "borsh", @@ -8173,19 +8198,19 @@ dependencies = [ [[package]] name = "rust_decimal_macros" -version = "1.39.0" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae8c0cb48f413ebe24dc2d148788e0efbe09ba3e011d9277162f2eaf8e1069a3" +checksum = "74a5a6f027e892c7a035c6fddb50435a1fbf5a734ffc0c2a9fed4d0221440519" dependencies = [ "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "rustc-demangle" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" +checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d" [[package]] name = "rustc-hash" @@ -8217,7 +8242,7 @@ version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "errno", "libc", "linux-raw-sys 0.4.15", @@ -8226,22 +8251,22 @@ dependencies = [ [[package]] name = "rustix" -version = "1.1.2" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "errno", "libc", - "linux-raw-sys 0.11.0", + "linux-raw-sys 0.12.1", "windows-sys 0.61.2", ] [[package]] name = "rustls" -version = "0.23.35" +version = "0.23.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" +checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" dependencies = [ "brotli", "brotli-decompressor", @@ -8256,21 +8281,21 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923" +checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" dependencies = [ "openssl-probe", "rustls-pki-types", "schannel", - "security-framework 3.5.1", + "security-framework 3.7.0", ] [[package]] name = "rustls-pki-types" -version = "1.13.0" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" +checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" dependencies = [ "web-time", "zeroize", @@ -8278,9 +8303,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.103.8" +version = "0.103.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" +checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" dependencies = [ "ring", "rustls-pki-types", @@ -8307,9 +8332,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.20" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "same-file" @@ -8322,9 +8347,9 @@ dependencies = [ [[package]] name = "schannel" -version = "0.1.28" +version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" dependencies = [ "windows-sys 0.61.2", ] @@ -8385,7 +8410,7 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "core-foundation 0.9.4", "core-foundation-sys", "libc", @@ -8394,11 +8419,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "3.5.1" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "core-foundation 0.10.1", "core-foundation-sys", "libc", @@ -8407,9 +8432,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.15.0" +version = "2.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" dependencies = [ "core-foundation-sys", "libc", @@ -8504,21 +8529,21 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "serde_json" -version = "1.0.145" +version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ - "indexmap 2.12.0", + "indexmap 2.13.0", "itoa", "memchr", - "ryu", "serde", "serde_core", + "zmij", ] [[package]] @@ -8540,7 +8565,7 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -8583,7 +8608,7 @@ version = "0.9.34+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "indexmap 2.12.0", + "indexmap 2.13.0", "itoa", "ryu", "serde", @@ -8612,7 +8637,7 @@ checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -8644,7 +8669,7 @@ dependencies = [ "serde_json", "slog", "tempfile", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "url", ] @@ -8657,7 +8682,7 @@ checksum = "c2ff74d7e7d1cc172f3a45adec74fbeee928d71df095b85aaaf66eb84e1e31e6" dependencies = [ "base64 0.22.1", "bitfield", - "bitflags 2.10.0", + "bitflags 2.11.0", "byteorder", "dirs 6.0.0", "hex", @@ -8709,9 +8734,9 @@ dependencies = [ [[package]] name = "shell-words" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" +checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77" [[package]] name = "shlex" @@ -8721,10 +8746,11 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "signal-hook-registry" -version = "1.4.6" +version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ + "errno", "libc", ] @@ -8740,9 +8766,9 @@ dependencies = [ [[package]] name = "simd-adler32" -version = "0.3.7" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" [[package]] name = "simdutf8" @@ -8752,27 +8778,27 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" [[package]] name = "simple_asn1" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" +checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d" dependencies = [ "num-bigint", "num-traits", - "thiserror 2.0.17", + "thiserror 2.0.18", "time", ] [[package]] name = "siphasher" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" +checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" [[package]] name = "slab" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "slack-notifications" @@ -8782,7 +8808,7 @@ dependencies = [ "candid", "clap", "dotenv", - "env_logger 0.11.8", + "env_logger 0.11.9", "fs-err", "futures", "ic-agent 0.39.3", @@ -8843,9 +8869,9 @@ dependencies = [ [[package]] name = "slog-scope" -version = "4.4.0" +version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f95a4b4c3274cd2869549da82b57ccc930859bdbf5bcea0424bc5f140b3c786" +checksum = "42b76cf645c92e7850d5a1c9205ebf2864bd32c0ab3e978e6daad51fedf7ef54" dependencies = [ "arc-swap", "lazy_static", @@ -8861,16 +8887,16 @@ dependencies = [ "chrono", "is-terminal", "slog", - "term 1.2.0", + "term 1.2.1", "thread_local", "time", ] [[package]] name = "slotmap" -version = "1.0.7" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" +checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038" dependencies = [ "version_check", ] @@ -8899,7 +8925,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -8945,12 +8971,12 @@ dependencies = [ [[package]] name = "socket2" -version = "0.6.1" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" dependencies = [ "libc", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -8961,9 +8987,9 @@ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" [[package]] name = "spinners" -version = "4.1.1" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0ef947f358b9c238923f764c72a4a9d42f2d637c46e059dbd319d6e7cfb4f82" +checksum = "071af1a9d34b78b8db3ca4424b0ea4d87052d607dbe96287aebaccd596cabc86" dependencies = [ "lazy_static", "maplit", @@ -8988,9 +9014,9 @@ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "stacker" -version = "0.1.22" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59" +checksum = "08d74a23609d509411d10e2176dc2a4346e3b4aea2e7b1869f19fdedbc71c013" dependencies = [ "cc", "cfg-if", @@ -9088,7 +9114,7 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -9116,9 +9142,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.110" +version = "2.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" dependencies = [ "proc-macro2", "quote", @@ -9142,16 +9168,16 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "system-configuration" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" +checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" dependencies = [ - "bitflags 2.10.0", + "bitflags 2.11.0", "core-foundation 0.9.4", "system-configuration-sys", ] @@ -9196,7 +9222,7 @@ dependencies = [ "proc-macro-error2", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -9233,14 +9259,14 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.23.0" +version = "3.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.3.4", + "getrandom 0.4.2", "once_cell", - "rustix 1.1.2", + "rustix 1.1.4", "windows-sys 0.61.2", ] @@ -9257,9 +9283,9 @@ dependencies = [ [[package]] name = "term" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2111ef44dae28680ae9752bb89409e7310ca33a8c621ebe7b106cf5c928b3ac0" +checksum = "d8c27177b12a6399ffc08b98f76f7c9a1f4fe9fc967c784c5a071fa8d93cf7e1" dependencies = [ "windows-sys 0.61.2", ] @@ -9279,7 +9305,7 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" dependencies = [ - "rustix 1.1.2", + "rustix 1.1.4", "windows-sys 0.60.2", ] @@ -9300,11 +9326,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.17" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ - "thiserror-impl 2.0.17", + "thiserror-impl 2.0.18", ] [[package]] @@ -9315,18 +9341,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "thiserror-impl" -version = "2.0.17" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -9346,30 +9372,30 @@ dependencies = [ [[package]] name = "time" -version = "0.3.44" +version = "0.3.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" dependencies = [ "deranged", "itoa", "num-conv", "powerfmt", - "serde", + "serde_core", "time-core", "time-macros", ] [[package]] name = "time-core" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" [[package]] name = "time-macros" -version = "0.2.24" +version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" dependencies = [ "num-conv", "time-core", @@ -9427,14 +9453,14 @@ checksum = "2d2e76690929402faae40aebdda620a2c0e25dd6d3b9afe48867dfd95991f4bd" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "tokio" -version = "1.48.0" +version = "1.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" dependencies = [ "bytes", "libc", @@ -9442,27 +9468,27 @@ dependencies = [ "parking_lot", "pin-project-lite", "signal-hook-registry", - "socket2 0.6.1", + "socket2 0.6.3", "tokio-macros", "windows-sys 0.61.2", ] [[package]] name = "tokio-macros" -version = "2.6.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" +checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "tokio-metrics" -version = "0.4.5" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a01bbf7db0b3f5eee8930a119fe99bfa1438de1095fe3d26b25e652a5933ef3f" +checksum = "0e0410015c6db7b67b9c9ab2a3af4d74a942d637ff248d0d055073750deac6f9" dependencies = [ "futures-util", "pin-project-lite", @@ -9482,9 +9508,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" +checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ "futures-core", "pin-project-lite", @@ -9505,9 +9531,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.17" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ "bytes", "futures-core", @@ -9518,20 +9544,20 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.7.3" +version = "1.0.0+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" +checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" dependencies = [ "serde_core", ] [[package]] name = "toml_edit" -version = "0.23.7" +version = "0.25.4+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" +checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2" dependencies = [ - "indexmap 2.12.0", + "indexmap 2.13.0", "toml_datetime", "toml_parser", "winnow", @@ -9539,9 +9565,9 @@ dependencies = [ [[package]] name = "toml_parser" -version = "1.0.4" +version = "1.0.9+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" +checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" dependencies = [ "winnow", ] @@ -9558,7 +9584,7 @@ dependencies = [ "base64 0.22.1", "bytes", "h2", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", "hyper", @@ -9587,7 +9613,7 @@ dependencies = [ "prost-build", "prost-types", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -9612,14 +9638,14 @@ dependencies = [ [[package]] name = "tower" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" dependencies = [ "futures-core", "futures-util", "hdrhistogram", - "indexmap 2.12.0", + "indexmap 2.13.0", "pin-project-lite", "slab", "sync_wrapper", @@ -9632,23 +9658,23 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ "async-compression", - "bitflags 2.10.0", + "bitflags 2.11.0", "bytes", "futures-core", "futures-util", - "http 1.3.1", + "http 1.4.0", "http-body", "http-body-util", "iri-string", "pin-project-lite", "tokio", "tokio-util", - "tower 0.5.2", + "tower 0.5.3", "tower-layer", "tower-service", "tracing", @@ -9669,9 +9695,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.41" +version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ "log", "pin-project-lite", @@ -9681,20 +9707,20 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] name = "tracing-core" -version = "0.1.34" +version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ "once_cell", ] @@ -9737,12 +9763,12 @@ checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442" dependencies = [ "bytes", "data-encoding", - "http 1.3.1", + "http 1.4.0", "httparse", "log", "rand 0.9.2", "sha1", - "thiserror 2.0.17", + "thiserror 2.0.18", "utf-8", ] @@ -9778,9 +9804,9 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicode-ident" -version = "1.0.22" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" [[package]] name = "unicode-segmentation" @@ -9820,14 +9846,15 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.7" +version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ "form_urlencoded", "idna", "percent-encoding", "serde", + "serde_derive", ] [[package]] @@ -9844,9 +9871,9 @@ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" [[package]] name = "utf8-width" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3" +checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091" [[package]] name = "utf8_iter" @@ -9862,13 +9889,13 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.18.1" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" +checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" dependencies = [ - "getrandom 0.3.4", + "getrandom 0.4.2", "js-sys", - "serde", + "serde_core", "wasm-bindgen", ] @@ -9909,8 +9936,8 @@ dependencies = [ "leb128", "log", "walrus-macro", - "wasm-encoder", - "wasmparser", + "wasm-encoder 0.212.0", + "wasmparser 0.212.0", ] [[package]] @@ -9942,18 +9969,27 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" [[package]] name = "wasip2" -version = "1.0.1+wasi-0.2.4" +version = "1.0.2+wasi-0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" dependencies = [ "wit-bindgen", ] [[package]] name = "wasm-bindgen" -version = "0.2.105" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" +checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" dependencies = [ "cfg-if", "once_cell", @@ -9964,11 +10000,12 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.55" +version = "0.4.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0" +checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" dependencies = [ "cfg-if", + "futures-util", "js-sys", "once_cell", "wasm-bindgen", @@ -9977,9 +10014,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.105" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" +checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -9987,22 +10024,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.105" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" +checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" dependencies = [ "bumpalo", "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.105" +version = "0.2.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" +checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" dependencies = [ "unicode-ident", ] @@ -10016,6 +10053,28 @@ dependencies = [ "leb128", ] +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser 0.244.0", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap 2.13.0", + "wasm-encoder 0.244.0", + "wasmparser 0.244.0", +] + [[package]] name = "wasm-streams" version = "0.4.2" @@ -10036,18 +10095,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d28bc49ba1e5c5b61ffa7a2eace10820443c4b7d1c0b144109261d14570fdf8" dependencies = [ "ahash 0.8.12", - "bitflags 2.10.0", + "bitflags 2.11.0", "hashbrown 0.14.5", - "indexmap 2.12.0", + "indexmap 2.13.0", "semver", "serde", ] +[[package]] +name = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags 2.11.0", + "hashbrown 0.15.5", + "indexmap 2.13.0", + "semver", +] + [[package]] name = "web-sys" -version = "0.3.82" +version = "0.3.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" +checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" dependencies = [ "js-sys", "wasm-bindgen", @@ -10065,9 +10136,9 @@ dependencies = [ [[package]] name = "webpki-roots" -version = "1.0.4" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" +checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed" dependencies = [ "rustls-pki-types", ] @@ -10123,9 +10194,9 @@ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ "windows-implement", "windows-interface", - "windows-link 0.2.1", - "windows-result 0.4.1", - "windows-strings 0.5.1", + "windows-link", + "windows-result", + "windows-strings", ] [[package]] @@ -10136,7 +10207,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -10147,15 +10218,9 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] -[[package]] -name = "windows-link" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" - [[package]] name = "windows-link" version = "0.2.1" @@ -10164,22 +10229,13 @@ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] name = "windows-registry" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e" -dependencies = [ - "windows-link 0.1.3", - "windows-result 0.3.4", - "windows-strings 0.4.2", -] - -[[package]] -name = "windows-result" -version = "0.3.4" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" dependencies = [ - "windows-link 0.1.3", + "windows-link", + "windows-result", + "windows-strings", ] [[package]] @@ -10188,16 +10244,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ - "windows-link 0.2.1", -] - -[[package]] -name = "windows-strings" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" -dependencies = [ - "windows-link 0.1.3", + "windows-link", ] [[package]] @@ -10206,7 +10253,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -10251,7 +10298,7 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -10291,7 +10338,7 @@ version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ - "windows-link 0.2.1", + "windows-link", "windows_aarch64_gnullvm 0.53.1", "windows_aarch64_msvc 0.53.1", "windows_i686_gnu 0.53.1", @@ -10442,9 +10489,9 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" [[package]] name = "winnow" -version = "0.7.13" +version = "0.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" dependencies = [ "memchr", ] @@ -10460,7 +10507,7 @@ dependencies = [ "base64 0.22.1", "deadpool", "futures", - "http 1.3.1", + "http 1.4.0", "http-body-util", "hyper", "hyper-util", @@ -10475,9 +10522,91 @@ dependencies = [ [[package]] name = "wit-bindgen" -version = "0.46.0" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck 0.5.0", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck 0.5.0", + "indexmap 2.13.0", + "prettyplease", + "syn 2.0.117", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.117", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags 2.11.0", + "indexmap 2.13.0", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder 0.244.0", + "wasm-metadata", + "wasmparser 0.244.0", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap 2.13.0", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser 0.244.0", +] [[package]] name = "writeable" @@ -10536,7 +10665,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" dependencies = [ "libc", - "rustix 1.1.2", + "rustix 1.1.4", ] [[package]] @@ -10579,28 +10708,28 @@ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", "synstructure", ] [[package]] name = "zerocopy" -version = "0.8.27" +version = "0.8.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" +checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.27" +version = "0.8.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" +checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -10620,7 +10749,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", "synstructure", ] @@ -10635,13 +10764,13 @@ dependencies = [ [[package]] name = "zeroize_derive" -version = "1.4.2" +version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -10674,7 +10803,7 @@ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.110", + "syn 2.0.117", ] [[package]] @@ -10685,9 +10814,15 @@ checksum = "dba6063ff82cdbd9a765add16d369abe81e520f836054e997c2db217ceca40c0" dependencies = [ "base64 0.22.1", "ed25519-dalek", - "thiserror 2.0.17", + "thiserror 2.0.18", ] +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" + [[package]] name = "zstd" version = "0.13.3" diff --git a/Cargo.toml b/Cargo.toml index 7572b0cf5..8f7d59fdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -217,6 +217,9 @@ ic-node-rewards-canister-api = { git = "https://github.com/dfinity/ic.git", rev # dre-airflow deps, should be replaced with dre-airflow once indexmap = { version = "2.11.1", features = ["serde"] } +[patch.crates-io] +ic-error-types = { git = "https://github.com/dfinity/ic.git", rev = "89cc1c20223532c900b94de5bc6bd8cbde278797" } + [profile.release] # Add debug information to the release build (does NOT reduce the level of optimization!) # Makes flamegraphs and backtraces more readable.