From 5f37a68b9fee5309fe93141b3b9eab4517030229 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 10 Aug 2023 14:08:47 -0500 Subject: [PATCH] Bump std to v0.198.0 --- src/deps-test.ts | 2 +- src/deps.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deps-test.ts b/src/deps-test.ts index e57b4adc..1448854f 100644 --- a/src/deps-test.ts +++ b/src/deps-test.ts @@ -1 +1 @@ -export { assert, assertEquals, assertThrows } from 'https://deno.land/std@0.177.0/testing/asserts.ts'; +export { assert, assertEquals, assertThrows } from 'https://deno.land/std@0.198.0/assert/mod.ts'; diff --git a/src/deps.ts b/src/deps.ts index 12e2baf6..7ee37ea5 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -49,7 +49,7 @@ export { generateSeededRsa } from 'https://gitlab.com/soapbox-pub/seeded-rsa/-/r export * as secp from 'npm:@noble/secp256k1@^2.0.0'; export { LRUCache } from 'npm:lru-cache@^10.0.0'; export { DB as Sqlite } from 'https://deno.land/x/sqlite@v3.7.3/mod.ts'; -export * as dotenv from 'https://deno.land/std@0.197.0/dotenv/mod.ts'; +export * as dotenv from 'https://deno.land/std@0.198.0/dotenv/mod.ts'; export { FileMigrationProvider, type Insertable,