Skip to content

Commit

Permalink
chore: update std to 0.79.0 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Nov 26, 2020
1 parent 6a110d6 commit 6a4f366
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ export {
AWSSignerV4,
toAmz,
toDateStamp,
} from "https://deno.land/x/aws_sign_v4@0.1.4/mod.ts";
} from "https://deno.land/x/aws_sign_v4@0.1.5/mod.ts";
export type {
Credentials,
Signer,
} from "https://deno.land/x/aws_sign_v4@0.1.4/mod.ts";
import { createHash } from "https://deno.land/std@0.71.0/hash/mod.ts";
} from "https://deno.land/x/aws_sign_v4@0.1.5/mod.ts";
import { createHash } from "https://deno.land/std@0.79.0/hash/mod.ts";
export function sha256Hex(data: string | Uint8Array): string {
const hasher = createHash("sha256");
hasher.update(data);
return hasher.toString("hex");
}
export { default as parseXML } from "https://raw.githubusercontent.com/nekobato/deno-xml-parser/0bc4c2bd2f5fad36d274279978ca57eec57c680c/index.ts";
export { decode as decodeXMLEntities } from "https://deno.land/x/html_entities@v1.0/lib/xml-entities.js";
export { pooledMap } from "https://deno.land/std@0.71.0/async/pool.ts";
export { pooledMap } from "https://deno.land/std@0.79.0/async/pool.ts";
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ export {
assert,
assertEquals,
assertThrowsAsync,
} from "https://deno.land/std@0.71.0/testing/asserts.ts";
} from "https://deno.land/std@0.79.0/testing/asserts.ts";

0 comments on commit 6a4f366

Please sign in to comment.