Skip to content

Commit 7619b73

Browse files
authored
chore: update std to 0.71.0 and aws_sign_v4 to 0.1.2 (#9)
1 parent 4ca01b7 commit 7619b73

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

deps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export { AWSSignerV4 } from "https://deno.land/x/[email protected].1/mod.ts";
2-
import { createHash } from "https://deno.land/std@0.69.0/hash/mod.ts";
1+
export { AWSSignerV4 } from "https://deno.land/x/[email protected].2/mod.ts";
2+
import { createHash } from "https://deno.land/std@0.71.0/hash/mod.ts";
33
export function sha256Hex(data: string | Uint8Array): string {
44
const hasher = createHash("sha256");
55
hasher.update(data);

test_deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export {
22
assert,
33
assertEquals,
44
assertThrowsAsync,
5-
} from "https://deno.land/std@0.69.0/testing/asserts.ts";
5+
} from "https://deno.land/std@0.71.0/testing/asserts.ts";

0 commit comments

Comments
 (0)