Remove dependence on logging framework. Just raise exceptions instead.

This commit is contained in:
2025-01-05 01:55:50 -06:00
parent feeef6429c
commit 9f302556f6
3 changed files with 9 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
# Package
version = "0.4.1"
version = "0.4.2"
author = "Jonathan Bernard"
description = "Jonathan's opinionated extensions and auth layer for Jester."
license = "MIT"
@@ -15,7 +15,7 @@ requires "nim >= 1.6.2"
requires @["bcrypt", "mummy", "uuids", "webby"]
# from https://git.jdb-software.com/jdb/nim-packages
requires @["jwt_full >= 0.2.0", "namespaced_logging >= 0.3.0"]
requires @["jwt_full >= 0.2.0"]
task unittest, "Runs the unit test suite.":
exec "nim c -r test/runner"