changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/cry/cry.asd

changeset 698: 96958d3eb5b0
parent: 7120877e0453
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 (defsystem :cry
2  :version "0.1.0"
3  :maintainer "ellis <ellis@rwest.io>"
4  :bug-tracker "https://vc.compiler.company/comp/core/issues"
5  :depends-on
6  (:ironclad :sb-concurrency :sb-posix
7  :sb-bsd-sockets :cl-ppcre
8  :std :log :obj)
9  :components ((:file "pkg")
10  (:file "err" :depends-on ("pkg"))
11  (:file "crc64" :depends-on ("pkg"))
12  (:file "authinfo" :depends-on ("err"))
13  (:file "jwt" :depends-on ("err"))
14  (:file "hotp" :depends-on ("err"))
15  (:file "totp" :depends-on ("hotp")))
16  :in-order-to ((test-op (test-op :cry/tests))))
17 
18 (defsystem :cry/tests
19  :depends-on (:rt :cry)
20  :components ((:file "tests"))
21  :perform (test-op (o c) (symbol-call :rt :do-tests :cry)))