Skip to content

Commit

Permalink
Merge pull request #31 from dajiaji/update-dependencies-2
Browse files Browse the repository at this point in the history
Update dependencies.
  • Loading branch information
dajiaji authored Jan 28, 2024
2 parents 53f6e0e + a3275c9 commit 84170d6
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 70 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"testing/": "https://deno.land/std@0.208.0/testing/",
"testing/": "https://deno.land/std@0.213.0/testing/",
"dnt": "https://deno.land/x/[email protected]/mod.ts"
},
"fmt": {
Expand Down
104 changes: 38 additions & 66 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/kyberBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
shake128,
shake256,
// @ts-ignore: for "npm:"
} from "npm:@noble/[email protected].2/sha3";
} from "npm:@noble/[email protected].3/sha3";

import { N, NTT_ZETAS, NTT_ZETAS_INV, Q, Q_INV } from "./consts.ts";
import { KyberError } from "./errors.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-ignore: for "npm:"
import { shake256 } from "npm:@noble/[email protected].2/sha3";
import { shake256 } from "npm:@noble/[email protected].3/sha3";

export function byte(n: number): number {
return n % 256;
Expand Down
2 changes: 1 addition & 1 deletion test/runtimes/cloudflare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "wrangler",
"version": "0.1.0",
"devDependencies": {
"wrangler": "3.3.0"
"wrangler": "^3.19.0"
},
"private": true,
"scripts": {
Expand Down

0 comments on commit 84170d6

Please sign in to comment.