-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-natter.asd
46 lines (45 loc) · 1.41 KB
/
cl-natter.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
;;;; cl-natter.asd
(asdf:defsystem #:cl-natter
:description "A Common-Lisp implementation of Neil Madden's Natter API."
:author "Johnny Ruiz <[email protected]>"
:license "MIT"
:version "0.0.1"
:serial t
:pathname "src/"
:depends-on (:cl-base64
:cl-bcrypt
:cl-cookie
:cl-dbi
:cl-ppcre
:clack
:ironclad
:jonathan
:local-time
:str
:synchronized-hash-tables
:tiny-routes
:tiny-routes-middleware-cookie
:uuid
:uiop
:verbose)
:components ((:file "error")
(:file "logger")
(:file "util")
(:file "crypt")
(:file "type")
(:file "db")
(:file "session")
(:file "token")
(:module "controller"
:serial t
:components ((:file "space")
(:file "user")
(:file "audit")
(:file "moderator")
(:file "token")))
(:file "rate-limiter")
(:file "middleware")
(:file "route")
(:file "server")
(:file "cl-natter"))
:in-order-to ((asdf:test-op (asdf:test-op :cl-natter-test))))