Rename to jwt_full to avoid collision with existing nim-jwt.

This commit is contained in:
jdb
2021-12-25 21:24:48 -06:00
parent 35a9cf682c
commit 4cc2a4dee5
25 changed files with 30 additions and 30 deletions
+16
View File
@@ -0,0 +1,16 @@
# Package
version = "0.1.0"
author = "Jonathan Bernard"
description = "Full JWT, JWS, JWE, and JWK implementation for Nim, compliant with RFCs 7515-7519."
license = "GPL-3.0-or-later"
srcDir = "src/main"
# Dependencies
requires "nim >= 1.4.8"
requires "bearssl"
requires "https://github.com/yglukhov/bearssl_pkey_decoder"
task unittest, "Run the unit test suites.":
exec "nim c -r src/test/unit/runner"