2 files changed, 2 insertions(+), 2 deletions(-)
M mod.ts
M test.ts
M mod.ts => mod.ts +1 -1
@@ 1,7 1,7 @@
import {
decode as hexDecode,
encode as hexEncode,
-} from "https://deno.land/std@0.182.0/encoding/hex.ts";
+} from "https://deno.land/std@0.200.0/encoding/hex.ts";
/**
* convert a string to its byte array representation
M test.ts => test.ts +1 -1
@@ 1,4 1,4 @@
-import { assertEquals } from "https://deno.land/std@0.182.0/testing/asserts.ts";
+import { assertEquals } from "https://deno.land/std@0.200.0/assert/mod.ts";
import { bytesToHex, bytesToString, hexToBytes, stringToBytes } from "./mod.ts";
Deno.test("round trip hex value", () => {