-
Notifications
You must be signed in to change notification settings - Fork 1
/
cl-hrac.asd
36 lines (33 loc) · 1.04 KB
/
cl-hrac.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
(in-package :cl-user)
(defpackage :cl-hrac.system
(:use :cl :asdf))
(in-package :cl-hrac.system)
(defsystem :cl-hrac
:version "0.1"
:description "RabbitMQ Management HTTP API in Common Lisp"
:maintainer "Ilya Khaprov <[email protected]>"
:author "Ilya Khaprov <[email protected]> and CONTRIBUTORS"
:homepage "https://github.com/cl-rabbit/cl-hrac"
:licence "MIT"
:depends-on ("alexandria"
"quri"
"cl-interpol"
"ia-hash-table"
"drakma"
"collectors"
"trivial-utf-8"
"yason"
"log4cl")
:serial t
:components ((:module "src"
:serial t
:components
((:file "package")
(:module "connection"
:serial t
:components
((:file "spec")
(:file "connection")))
(:file "util")
(:file "hrac"))))
:in-order-to ((test-op (test-op cl-hrac.test))))