Skip to content

Commit 6a4f366

Browse files
authored
chore: update std to 0.79.0 (#18)
1 parent 6a110d6 commit 6a4f366

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

deps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ export {
22
AWSSignerV4,
33
toAmz,
44
toDateStamp,
5-
} from "https://deno.land/x/aws_sign_v4@0.1.4/mod.ts";
5+
} from "https://deno.land/x/aws_sign_v4@0.1.5/mod.ts";
66
export type {
77
Credentials,
88
Signer,
9-
} from "https://deno.land/x/aws_sign_v4@0.1.4/mod.ts";
10-
import { createHash } from "https://deno.land/std@0.71.0/hash/mod.ts";
9+
} from "https://deno.land/x/aws_sign_v4@0.1.5/mod.ts";
10+
import { createHash } from "https://deno.land/std@0.79.0/hash/mod.ts";
1111
export function sha256Hex(data: string | Uint8Array): string {
1212
const hasher = createHash("sha256");
1313
hasher.update(data);
1414
return hasher.toString("hex");
1515
}
1616
export { default as parseXML } from "https://raw.githubusercontent.com/nekobato/deno-xml-parser/0bc4c2bd2f5fad36d274279978ca57eec57c680c/index.ts";
1717
export { decode as decodeXMLEntities } from "https://deno.land/x/html_entities@v1.0/lib/xml-entities.js";
18-
export { pooledMap } from "https://deno.land/std@0.71.0/async/pool.ts";
18+
export { pooledMap } from "https://deno.land/std@0.79.0/async/pool.ts";

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.71.0/testing/asserts.ts";
5+
} from "https://deno.land/std@0.79.0/testing/asserts.ts";

0 commit comments

Comments
 (0)