-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cl-bcrypt.asd
24 lines (23 loc) · 917 Bytes
/
cl-bcrypt.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(defpackage :cl-bcrypt-system
(:use :cl :asdf))
(in-package :cl-bcrypt-system)
(defsystem "cl-bcrypt"
:name "cl-bcrypt"
:long-name "cl-bcrypt"
:description "Common Lisp system for generating and parsing of bcrypt password hashes"
:version "0.1.0"
:author "Marin Atanasov Nikolov <dnaeon@gmail.com>"
:maintainer "Marin Atanasov Nikolov <dnaeon@gmail.com>"
:license "BSD 2-Clause"
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:homepage "https://github.com/dnaeon/cl-bcrypt"
:bug-tracker "https://github.com/dnaeon/cl-bcrypt"
:source-control "https://github.com/dnaeon/cl-bcrypt"
:depends-on (:binascii
:ironclad
:cl-ppcre)
:components ((:module "core"
:pathname #P"src/"
:components ((:file "bcrypt"))))
:in-order-to ((test-op (test-op "cl-bcrypt.test"))))