Skip to content

Commit cffba43

Browse files
committed
chore: update dependencies
1 parent 73df713 commit cffba43

33 files changed

+924
-1376
lines changed

Cargo.lock

Lines changed: 496 additions & 313 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ sha2 = "0.10"
4747
sha3 = "0.10"
4848
num-traits = "0.2"
4949
ic-agent = "0.39"
50-
ic-cdk = "0.16"
51-
ic-cdk-timers = "0.10"
50+
ic-cdk = "0.17"
51+
ic-cdk-timers = "0.11"
5252
ic-stable-structures = "0.6"
5353
icrc-ledger-types = "0.1"
54-
ic_cose_types = "0.3"
54+
ic_cose_types = "0.4"
5555
ic-certification = "2.6"
5656
ic-oss-types = "0.9"
5757
getrandom = { version = "0.2", features = ["custom"] }

pnpm-lock.yaml

Lines changed: 314 additions & 997 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cli_airdrop/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ ic-certification = { workspace = true }
1919
clap = { workspace = true }
2020
ciborium = { workspace = true }
2121
num-traits = { workspace = true }
22-
icrc-ledger-types = { git = "https://github.com/dfinity/ic/", rev = "d19fa446ab35780b2c6d8b82ea32d808cca558d5" }
23-
ic-icrc1 = { git = "https://github.com/dfinity/ic/", rev = "d19fa446ab35780b2c6d8b82ea32d808cca558d5" }
24-
ic-ledger-core = { git = "https://github.com/dfinity/ic/", rev = "d19fa446ab35780b2c6d8b82ea32d808cca558d5" }
25-
ic-icrc1-tokens-u64 = { git = "https://github.com/dfinity/ic/", rev = "d19fa446ab35780b2c6d8b82ea32d808cca558d5" }
22+
icrc-ledger-types = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
23+
ic-icrc1 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
24+
ic-ledger-core = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
25+
ic-icrc1-tokens-u64 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
2626
ic-cbor = "2.6"

src/cli_dmsg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ ciborium = { workspace = true }
1717
num-traits = { workspace = true }
1818
chrono = { workspace = true }
1919
clap = { workspace = true }
20-
icrc-ledger-types = { git = "https://github.com/dfinity/ic/", rev = "d19fa446ab35780b2c6d8b82ea32d808cca558d5" }
20+
icrc-ledger-types = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
2121
ic_message_types = { path = "../ic_message_types", version = "2" }

src/ic_message/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ ic-stable-structures = { workspace = true }
2727
icrc-ledger-types = { workspace = true }
2828
ic_cose_types = { workspace = true }
2929
ic-certification = { workspace = true }
30-
ic-crypto-ed25519 = { git = "https://github.com/dfinity/ic/", rev = "d19fa446ab35780b2c6d8b82ea32d808cca558d5" }
30+
ic-crypto-ed25519 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }

src/ic_message/ic_message.did

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,11 @@ type InitArgs = record {
112112
name : text;
113113
schnorr_key_name : text;
114114
};
115-
type LogVisibility = variant { controllers; public };
115+
type LogVisibility = variant {
116+
controllers;
117+
public;
118+
allowed_viewers : vec principal;
119+
};
116120
type Price = record {
117121
name_l1 : nat64;
118122
name_l2 : nat64;

src/ic_message_channel/ic_message_channel.did

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,11 @@ type DownloadFilesToken = record {
109109
access_token : blob;
110110
};
111111
type InitArgs = record { managers : vec principal; name : text };
112-
type LogVisibility = variant { controllers; public };
112+
type LogVisibility = variant {
113+
controllers;
114+
public;
115+
allowed_viewers : vec principal;
116+
};
113117
type Message = record {
114118
id : nat32;
115119
reply_to : nat32;

src/ic_message_frontend/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"@dfinity/auth-client": "^2.1.3",
55
"@dfinity/candid": "^2.1.3",
66
"@dfinity/principal": "^2.1.3",
7-
"@dfinity/utils": "^2.6.0",
7+
"@dfinity/utils": "^2.7.0",
88
"@ldclabs/cose-ts": "^1.3.2",
9-
"@ldclabs/ic_oss_ts": "^0.9.6",
10-
"@noble/hashes": "^1.5.0",
11-
"@paulmillr/qr": "^0.2.1",
12-
"@scure/base": "^1.1.9",
9+
"@ldclabs/ic_oss_ts": "^0.9.10",
10+
"@noble/hashes": "^1.6.1",
11+
"@paulmillr/qr": "^0.3.0",
12+
"@scure/base": "^1.2.1",
1313
"cborg": "^4.2.6",
1414
"debounce": "^2.2.0",
1515
"idb": "^8.0.0",
@@ -20,19 +20,19 @@
2020
"@skeletonlabs/skeleton": "^2.10.3",
2121
"@skeletonlabs/tw-plugin": "^0.4.0",
2222
"@sveltejs/adapter-static": "^3.0.6",
23-
"@sveltejs/kit": "^2.8.1",
23+
"@sveltejs/kit": "^2.8.2",
2424
"@sveltejs/vite-plugin-svelte": "^4.0.1",
2525
"@tailwindcss/forms": "^0.5.9",
2626
"@testing-library/jest-dom": "^6.6.3",
2727
"@types/eslint": "^9.6.1",
2828
"@types/markdown-it": "^14.1.2",
29-
"@types/node": "^22.9.0",
30-
"@typescript-eslint/eslint-plugin": "^8.14.0",
31-
"@typescript-eslint/parser": "^8.14.0",
29+
"@types/node": "^22.9.3",
30+
"@typescript-eslint/eslint-plugin": "^8.15.0",
31+
"@typescript-eslint/parser": "^8.15.0",
3232
"@vite-pwa/assets-generator": "^0.2.6",
3333
"@vite-pwa/sveltekit": "^0.6.6",
3434
"autoprefixer": "^10.4.20",
35-
"babel-plugin-formatjs": "^10.5.24",
35+
"babel-plugin-formatjs": "^10.5.26",
3636
"cross-fetch": "^4.0.0",
3737
"cssnano": "^7.0.6",
3838
"dotenv": "^16.4.5",
@@ -45,19 +45,19 @@
4545
"postcss": "^8.4.49",
4646
"postcss-load-config": "^6.0.1",
4747
"prettier": "^3.3.3",
48-
"prettier-plugin-svelte": "^3.2.8",
49-
"prettier-plugin-tailwindcss": "^0.6.8",
48+
"prettier-plugin-svelte": "^3.3.2",
49+
"prettier-plugin-tailwindcss": "^0.6.9",
5050
"saos": "^1.3.1",
51-
"sort-package-json": "^2.10.1",
51+
"sort-package-json": "^2.12.0",
5252
"stylelint": "^16.10.0",
5353
"stylelint-config-standard": "^36.0.1",
54-
"svelte": "^5.2.2",
55-
"svelte-check": "^4.0.9",
54+
"svelte": "^5.2.7",
55+
"svelte-check": "^4.1.0",
5656
"svelte-easy-crop": "^3.0.1",
5757
"tailwindcss": "^3.4.15",
5858
"ts-node": "^10.9.2",
5959
"tslib": "^2.8.1",
60-
"typescript": "^5.6.3",
60+
"typescript": "^5.7.2",
6161
"vite": "^5.4.11",
6262
"vite-plugin-environment": "^1.1.3",
6363
"vite-plugin-pwa": "^0.21.0",
@@ -82,5 +82,5 @@
8282
"test": "vitest run"
8383
},
8484
"type": "module",
85-
"version": "2.6.10"
85+
"version": "2.6.11"
8686
}

src/ic_message_frontend/src/declarations/ic_message/ic_message.did

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,11 @@ type InitArgs = record {
112112
name : text;
113113
schnorr_key_name : text;
114114
};
115-
type LogVisibility = variant { controllers; public };
115+
type LogVisibility = variant {
116+
controllers;
117+
public;
118+
allowed_viewers : vec principal;
119+
};
116120
type Price = record {
117121
name_l1 : nat64;
118122
name_l2 : nat64;

0 commit comments

Comments
 (0)