-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathdexador.asd
51 lines (49 loc) · 1.81 KB
/
dexador.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
47
48
49
50
51
#|
This file is a part of dexador project.
Copyright (c) 2015 Eitaro Fukamachi ([email protected])
|#
#|
Author: Eitaro Fukamachi ([email protected])
|#
(defsystem "dexador"
:version "0.9.15"
:author "Eitaro Fukamachi"
:license "MIT"
:defsystem-depends-on ("trivial-features")
:depends-on ("fast-http"
"quri"
"fast-io"
"babel"
"trivial-gray-streams"
"trivial-garbage"
"chunga"
"cl-ppcre"
"cl-cookie"
"trivial-mimes"
"chipz"
"cl-base64"
"usocket"
(:feature :windows "winhttp")
(:feature :windows "flexi-streams")
(:feature (:and (:not :windows) (:not :dexador-no-ssl)) "cl+ssl")
"bordeaux-threads"
"alexandria"
(:version "uiop" "3.1.1"))
:components ((:module "src"
:components
((:file "dexador" :depends-on ("backend" "error" "restarts"))
(:file "encoding")
(:file "connection-cache")
(:file "decoding-stream")
(:file "keep-alive-stream")
(:file "body" :depends-on ("encoding" "decoding-stream" "util"))
(:file "error")
(:file "restarts")
(:file "util")
(:module "backend"
:depends-on ("encoding" "connection-cache" "decoding-stream" "keep-alive-stream" "body" "error" "restarts" "util")
:components
((:file "usocket" :if-feature (:not :windows))
(:file "winhttp" :if-feature :windows))))))
:description "Yet another HTTP client for Common Lisp"
:in-order-to ((test-op (test-op "dexador-test"))))