2022-01-22 18:50:29 -06:00
|
|
|
# Package
|
|
|
|
|
2023-08-09 09:18:29 -05:00
|
|
|
version = "0.3.0"
|
2022-01-22 18:50:29 -06:00
|
|
|
author = "Jonathan Bernard"
|
2023-02-25 14:56:27 -07:00
|
|
|
description = "Jonathan's opinionated extensions and auth layer for Jester."
|
2022-01-22 18:50:29 -06:00
|
|
|
license = "MIT"
|
|
|
|
srcDir = "src"
|
|
|
|
|
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
|
|
|
|
requires "nim >= 1.6.2"
|
2023-02-25 14:56:27 -07:00
|
|
|
|
|
|
|
# from standard nimble repo
|
2022-01-22 18:50:29 -06:00
|
|
|
requires @["bcrypt", "jester >= 0.5.0", "uuids"]
|
|
|
|
|
2023-02-25 14:56:27 -07:00
|
|
|
# from https://git.jdb-software.com/jdb/nim-packages
|
|
|
|
requires @["jwt_full >= 0.2.0", "namespaced_logging >= 0.3.0"]
|
2022-01-22 18:50:29 -06:00
|
|
|
|
|
|
|
task unittest, "Runs the unit test suite.":
|
|
|
|
exec "nim c -r test/runner"
|