Open samuelteixeiras opened 4 years ago
To be able to run the example in the README I had to change from: import { Hash, encode } from "https://deno.land/x/checksum/mod.ts"; to import { Hash, encode } from "https://deno.land/x/checksum@1.2.0/mod.ts";
import { Hash, encode } from "https://deno.land/x/checksum/mod.ts";
import { Hash, encode } from "https://deno.land/x/checksum@1.2.0/mod.ts";
Am I missing something?
Without the version number, the latest version will be pulled, which means that your local Deno version should correspond to it.
To be able to run the example in the README I had to change from:
import { Hash, encode } from "https://deno.land/x/checksum/mod.ts";
toimport { Hash, encode } from "https://deno.land/x/checksum@1.2.0/mod.ts";
Am I missing something?