buffoonery/buffoonery.nimble

22 lines
473 B
Plaintext
Raw Normal View History

2022-01-22 18:50:29 -06:00
# Package
version = "0.4.7"
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
requires @["bcrypt", "mummy", "uuids", "webby"]
2022-01-22 18:50:29 -06:00
# from https://git.jdb-software.com/jdb/nim-packages
requires @["jwt_full >= 0.2.0"]
2022-01-22 18:50:29 -06:00
task unittest, "Runs the unit test suite.":
exec "nim c -r test/runner"