buffoonery/buffoonery.nimble

22 lines
505 B
Plaintext
Raw Normal View History

2022-01-22 18:50:29 -06:00
# Package
version = "0.3.0"
2022-01-22 18:50:29 -06:00
author = "Jonathan Bernard"
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"
# from standard nimble repo
2022-01-22 18:50:29 -06:00
requires @["bcrypt", "jester >= 0.5.0", "uuids"]
# 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"